tests: avoid compiler warning
authorEric Blake <eblake@redhat.com>
Fri, 17 Sep 2010 21:09:54 +0000 (15:09 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 17 Sep 2010 21:09:54 +0000 (15:09 -0600)
* tests/test-stdlib.c (main): Use the variable.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
tests/test-stdlib.c

index 6c46a5b..9197250 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2010-09-17  Eric Blake  <eblake@redhat.com>
 
+       tests: avoid compiler warning
+       * tests/test-stdlib.c (main): Use the variable.
+
        fdutimens, fdutimensat: update signature, again
        * lib/utimens.h (gl_futimens): Delete, and move signature...
        (fdutimens): ...here.
index 8066b05..e613b27 100644 (file)
@@ -59,5 +59,5 @@ main (void)
 #endif
       break;
     }
-  return 0;
+  return exitcode;
 }