* pipecom: added an argument to printf generating a warning

This commit is contained in:
Caner Candan 2011-03-14 17:29:20 +01:00
commit 8f6e4b253d

View file

@ -109,7 +109,7 @@ int PipeComSend( PCom *to, const char *line )
int nb = 0; int nb = 0;
if( ! Check(to ) ) if( ! Check(to ) )
return nb; return nb;
nb = fprintf( to->fWrit, line ); nb = fprintf( to->fWrit, line, 0 );
fflush( to->fWrit ); fflush( to->fWrit );
return nb; return nb;
} }