Message ID | 20181107131224.30856-1-adhemerval.zanella@linaro.org |
---|---|
State | New |
Headers | show |
Series | [COMMITTED] support: Fix printf format for TEST_COMPARE_STRING | expand |
* Adhemerval Zanella: > - printf (" string length: %lu bytes\n", left_length); > + printf (" string length: %zu bytes\n", left_length); Thanks; and sorry about that. Florian
diff --git a/support/support_test_compare_string.c b/support/support_test_compare_string.c index 9958aaeec1..a76ba8eda7 100644 --- a/support/support_test_compare_string.c +++ b/support/support_test_compare_string.c @@ -77,7 +77,7 @@ support_test_compare_string (const char *left, const char *right, support_record_failure (); printf ("%s:%d: error: blob comparison failed\n", file, line); if (left_length == right_length && right != NULL && left != NULL) - printf (" string length: %lu bytes\n", left_length); + printf (" string length: %zu bytes\n", left_length); else { report_length ("left", left, left_length);