apps/sysinfo: CONFIG_VERSION_BUILD is a string and needs to be printed with %s not %d

This commit is contained in:
Gregory Nutt 2014-04-08 10:47:38 -06:00
parent 217aa7835e
commit c3b82301a2
2 changed files with 3 additions and 2 deletions

View File

@ -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).

View File

@ -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"