Obsolete
/
libipc-old
Archived
3
0
Fork 0

corrections

more_to_read
lapupe 2016-09-10 17:16:26 +02:00
parent bde5bc0283
commit bfb14a3641
2 changed files with 2 additions and 2 deletions

BIN
pingpong/pingpong Executable file

Binary file not shown.

View File

@ -38,7 +38,7 @@ void main_loop (const struct service *srv)
char *buf = NULL;
// printf ("before read\n");
if ((ret = srv_read (&proc, &buf, &msize))) {
if ((ret = srv_read (&proc, &buf, &msize)) == -1) {
fprintf(stdout, "MAIN_LOOP: error service_read %d\n", ret);
continue;
}
@ -46,7 +46,7 @@ void main_loop (const struct service *srv)
printf ("read, size %ld : %s\n", msize, buf);
// printf ("before proc write\n");
if ((ret = srv_write (&proc, buf, msize))) {
if ((ret = srv_write (&proc, buf, msize)) == -1) {
fprintf(stdout, "MAIN_LOOP: error service_write %d\n", ret);
continue;
}