]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
[v4_1_esv] Fix test allocation message to use %zu
authorShawn Routhier <sar@isc.org>
Wed, 27 Jul 2016 18:00:28 +0000 (11:00 -0700)
committerShawn Routhier <sar@isc.org>
Wed, 27 Jul 2016 18:00:28 +0000 (11:00 -0700)
common/tests/test_alloc.c

index 07d6e6c047049d85bef3010a7d8647e3c73fc93e..afb1cd8f625c2af5c999f1f4d6c1bf515dadd4fa 100644 (file)
@@ -551,7 +551,7 @@ void checkBuffer(size_t test_size, const char *file, int line) {
     max_size = ((size_t)-1) - DMDSIZE;
 
     if (test_size > max_size) {
-       atf_tc_skip("Test size greater than max size, %lx", test_size);
+       atf_tc_skip("Test size greater than max size, %zu", test_size);
        return;
     }
 
@@ -562,10 +562,10 @@ void checkBuffer(size_t test_size, const char *file, int line) {
     if (buf != NULL) {
        buf[test_size - 1] = 1;
        if (buf[test_size - 1] != 1)
-           atf_tc_fail("Value mismatch for index %lu", test_size);
+           atf_tc_fail("Value mismatch for index %zu", test_size);
        dfree(buf, file, line);
     } else {
-       atf_tc_skip("Unable to allocate memory %lu", test_size);
+       atf_tc_skip("Unable to allocate memory %zu", test_size);
     }
 }