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:
parent
16266f5cd5
commit
3c350ffb39
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue