apps/sysinfo: CONFIG_VERSION_BUILD is a string and needs to be printed with %s not %d
This commit is contained in:
parent
217aa7835e
commit
c3b82301a2
@ -871,4 +871,5 @@
|
||||
* apps/examplex/lcdrw: Fill out empty Kconfig file (2014-2-27).
|
||||
* apps/netutils/dhcpd/dhcpd.c: The correct value of the PAD option
|
||||
is zero, not one. From Brennan Ashton (2014-3-31).
|
||||
|
||||
* apps/sysinfo: CONFIG_VERSION_BUILD is a string an needs to be
|
||||
printed with %s, not %d (2014-4-8).
|
||||
|
@ -59,7 +59,7 @@ int sysinfo_main(int argc, char *argv[])
|
||||
{
|
||||
printf("System Information:\n");
|
||||
printf("\tNuttX Version:\t" CONFIG_VERSION_STRING
|
||||
" Build: %d\n", CONFIG_VERSION_BUILD);
|
||||
" Build: %s\n", CONFIG_VERSION_BUILD);
|
||||
printf("\tSystem Time:\t%d [s] UTC "
|
||||
#ifdef CONFIG_RTC
|
||||
"Hardware RTC Support"
|
||||
|
Loading…
Reference in New Issue
Block a user