projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cc93d2
)
test-sockets: avoid gcc warning
author
Eric Blake
<ebb9@byu.net>
Wed, 25 Mar 2009 15:35:18 +0000
(09:35 -0600)
committer
Eric Blake
<ebb9@byu.net>
Thu, 26 Mar 2009 00:23:58 +0000
(18:23 -0600)
* tests/test-sockets.c (main): Silence compiler warning.
Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
patch
|
blob
|
history
tests/test-sockets.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 1698422730038e3f7aad5765f464fa2583d4d7fa..a838b64c3c8463cf25e11da1cd1fbd405edf35cd 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,8
@@
+2009-03-25 Eric Blake <ebb9@byu.net>
+
+ test-sockets: avoid gcc warning
+ * tests/test-sockets.c (main): Silence compiler warning.
+
2009-03-25 Paul Eggert <eggert@cs.ucla.edu>
New modules nproc, pthread, contributed by Glen Lenker.
diff --git
a/tests/test-sockets.c
b/tests/test-sockets.c
index a37a1978c42a4ef0c50eda4abdc78d77082ff79c..3c85a431c5ba85a9ea2d61d511ddc5625a319054 100644
(file)
--- 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;
}