Merge branch 'master' into openmp

This commit is contained in:
Caner Candan 2011-03-14 17:30:46 +01:00
commit 16c2e9d891

View file

@ -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;
}