diff --git a/eo/app/CMakeLists.txt b/eo/app/CMakeLists.txt index b57cce223..d13aac522 100644 --- a/eo/app/CMakeLists.txt +++ b/eo/app/CMakeLists.txt @@ -2,7 +2,7 @@ ### 1) Where must cmake go now ? ###################################################################################### -ADD_SUBDIRECTORY(gprop) +#ADD_SUBDIRECTORY(gprop) #ADD_SUBDIRECTORY(gpsymreg) ADD_SUBDIRECTORY(mastermind) ###################################################################################### 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; }