From 8f6e4b253d52d2cfc31e2a82b2da5a2f7f5ca2c7 Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Mon, 14 Mar 2011 17:29:20 +0100 Subject: [PATCH] * pipecom: added an argument to printf generating a warning --- eo/src/utils/pipecom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/pipecom.cpp b/eo/src/utils/pipecom.cpp index d11989ecd..46ad5489f 100644 --- a/eo/src/utils/pipecom.cpp +++ b/eo/src/utils/pipecom.cpp @@ -109,7 +109,7 @@ int PipeComSend( PCom *to, const char *line ) int nb = 0; if( ! Check(to ) ) return nb; - nb = fprintf( to->fWrit, line ); + nb = fprintf( to->fWrit, line, 0 ); fflush( to->fWrit ); return nb; }