nios2/sysid: fix printf warning
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
66da6fa0e3
commit
4cd7e6528f
|
@ -40,7 +40,7 @@ void display_sysid (void)
|
|||
stamp = readl (&sysid->timestamp);
|
||||
localtime_r (&stamp, &t);
|
||||
asctime_r (&t, asc);
|
||||
printf ("SYSID : %08x, %s", readl (&sysid->id), asc);
|
||||
printf ("SYSID : %08lx, %s", readl (&sysid->id), asc);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue