Avoid a gcc warning.
authorBruno Haible <bruno@clisp.org>
Sat, 24 Apr 2010 16:02:56 +0000 (18:02 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 24 Apr 2010 16:02:56 +0000 (18:02 +0200)
ChangeLog
tests/test-vasprintf.c

index 2d4a2316fc0aa7bb17e9804ee044c871e965208a..e3a6fc9f39f675e71fed629333725a91a561fd46 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-04-24  Bruno Haible  <bruno@clisp.org>
+
+       Avoid a gcc warning.
+       * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Pass argument
+       of correct type for %08lx directive.
+       Reported by Eric Blake.
+
 2010-04-24  Bruno Haible  <bruno@clisp.org>
 
        vasnprintf: Correct errno value in case of out-of-memory.
@@ -36,7 +43,7 @@
 
 2010-04-21  Simon Josefsson  <simon@josefsson.org>
 
-       * tests/test-vasprintf.c: Test %08lx.
+       * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Test %08lx.
 
 2010-04-20  Eric Blake  <eblake@redhat.com>
 
index e5676f4a9f536c63189f5947f00710f9461cec04..cfde4f49c7ef4ca99ccf273e4e1a8c1c983a913a 100644 (file)
@@ -60,7 +60,7 @@ test_vasprintf ()
   for (repeat = 0; repeat <= 8; repeat++)
     {
       char *result;
-      int retval = my_asprintf (&result, "%08lx", 12345);
+      int retval = my_asprintf (&result, "%08lx", 12345UL);
       ASSERT (retval == 8);
       ASSERT (result != NULL);
       ASSERT (strcmp (result, "00003039") == 0);
@@ -86,7 +86,7 @@ test_asprintf ()
   for (repeat = 0; repeat <= 8; repeat++)
     {
       char *result;
-      int retval = asprintf (&result, "%08lx", 12345);
+      int retval = asprintf (&result, "%08lx", 12345UL);
       ASSERT (retval == 8);
       ASSERT (result != NULL);
       ASSERT (strcmp (result, "00003039") == 0);