From 138f6a627e7a325153758451a4e9958bbc37b528 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 23 Mar 2014 13:10:05 -0600 Subject: [PATCH] Fix version number display in NSH prompt --- ChangeLog.txt | 3 +++ nshlib/nsh_parse.c | 1 + 2 files changed, 4 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index b836ee4a2..b92b147b1 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -861,3 +861,6 @@ 7.2 2014-xx-xx Gregory Nutt + * Fix NuttShell version number display in welcome message. version.h + was not being included (2014-3-23). + diff --git a/nshlib/nsh_parse.c b/nshlib/nsh_parse.c index d08608bed..4be4b9888 100644 --- a/nshlib/nsh_parse.c +++ b/nshlib/nsh_parse.c @@ -49,6 +49,7 @@ # include #endif +#include #include #include "nsh.h"