fixdep: Use correct printf identifier

Fixes a build warning caused by using the incorrect printf
identifier for a parameter of type size_t.

Change-Id: I03ecc245de366e7de07eb2b49a03f69af087090c
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2016-01-05 10:12:29 -05:00 committed by Anas Nashif
commit 3c350ffb39

View file

@ -502,7 +502,7 @@ static void traps(void)
int *p = (int *)test;
if (*p != INT_CONF) {
fprintf(stderr, "fixdep: sizeof(int) : %ld\n",
fprintf(stderr, "fixdep: sizeof(int) : %zu\n",
sizeof(int));
fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianness? %#x"