[GB.NET.CURL]

* BUG: Remove an unexpected ';'.


git-svn-id: svn://localhost/gambas/trunk@3709 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2011-03-30 16:15:58 +00:00
parent 5f16f05de6
commit 9f9686cae4

View File

@ -270,7 +270,7 @@ void CCURL_init_post(void)
}
GB.Watch (CCURL_pipe[0], GB_WATCH_READ, CCURL_post_curl, 0);
if (write(CCURL_pipe[1], "1", sizeof(char)) != 1);
if (write(CCURL_pipe[1], "1", sizeof(char)) != 1)
fprintf(stderr, "gb.net.curl: warning: unable to write to the client watching pipe: %s\n", strerror(errno));
}