Merge branch 'openmp' of ssh://localhost:9001/gitroot/eodev/eodev into openmp

This commit is contained in:
Caner Candan 2011-03-18 11:10:14 +01:00
commit 007aae69d5
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
### 1) Where must cmake go now ?
######################################################################################
ADD_SUBDIRECTORY(gprop)
#ADD_SUBDIRECTORY(gprop)
#ADD_SUBDIRECTORY(gpsymreg)
ADD_SUBDIRECTORY(mastermind)
######################################################################################

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