From: Eric Blake Date: Wed, 25 Mar 2009 15:35:18 +0000 (-0600) Subject: test-sockets: avoid gcc warning X-Git-Tag: v0.1~6055 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=f79c57d2fe10b58cfda7e64bb021ae69def7a529;p=gnulib.git test-sockets: avoid gcc warning * tests/test-sockets.c (main): Silence compiler warning. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 169842273..a838b64c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-03-25 Eric Blake + + test-sockets: avoid gcc warning + * tests/test-sockets.c (main): Silence compiler warning. + 2009-03-25 Paul Eggert New modules nproc, pthread, contributed by Glen Lenker. diff --git a/tests/test-sockets.c b/tests/test-sockets.c index a37a1978c..3c85a431c 100644 --- a/tests/test-sockets.c +++ b/tests/test-sockets.c @@ -40,7 +40,7 @@ main (int argc, char *argv[]) return 1; } - gl_fd_to_handle (0); + (void) gl_fd_to_handle (0); return 0; }