1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

Fix wrong signed int formatting string directive in test case #557.

This error did not cause test failures on systems where sizeof(int) == sizeof(long).
This commit is contained in:
Yang Tse 2008-08-24 17:10:24 +00:00
parent cbc04a7d40
commit 62d94ff342

View File

@ -440,7 +440,7 @@ static int test_signed_int_formatting(void)
si_test[i].result[j] = 'X'; si_test[i].result[j] = 'X';
si_test[i].result[BUFSZ-1] = '\0'; si_test[i].result[BUFSZ-1] = '\0';
(void)curl_msprintf(si_test[i].result, "%ld", si_test[i].num); (void)curl_msprintf(si_test[i].result, "%d", si_test[i].num);
if(memcmp(si_test[i].result, if(memcmp(si_test[i].result,
si_test[i].expected, si_test[i].expected,