summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/ChangeLog.txt3
-rw-r--r--apps/system/sysinfo/sysinfo.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 3c8a54fa6..fb809afef 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -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).
diff --git a/apps/system/sysinfo/sysinfo.c b/apps/system/sysinfo/sysinfo.c
index 019e910db..858567586 100644
--- a/apps/system/sysinfo/sysinfo.c
+++ b/apps/system/sysinfo/sysinfo.c
@@ -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"