* pipecom: added an argument to printf generating a warning
This commit is contained in:
parent
90863fd061
commit
8f6e4b253d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue