From 18b1178e0c4133f42ada433831498fbfc57f1ccf Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Thu, 4 Mar 2021 21:51:06 +0100 Subject: [PATCH] makefsdata: add version info This is required to make it possible to see you're using an old version if something doesn't work... See task #15331 --- src/apps/http/makefsdata/makefsdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/http/makefsdata/makefsdata.c b/src/apps/http/makefsdata/makefsdata.c index 8d7dcd2a..81806129 100644 --- a/src/apps/http/makefsdata/makefsdata.c +++ b/src/apps/http/makefsdata/makefsdata.c @@ -195,7 +195,7 @@ int main(int argc, char *argv[]) memset(path, 0, sizeof(path)); memset(appPath, 0, sizeof(appPath)); - printf(NEWLINE " makefsdata - HTML to C source converter" NEWLINE); + printf(NEWLINE " makefsdata v" LWIP_VERSION_STRING " - HTML to C source converter" NEWLINE); printf(" by Jim Pettinato - circa 2003 " NEWLINE); printf(" extended by Simon Goldschmidt - 2009 " NEWLINE NEWLINE);