[git commit] utils: Fix missing semicolon

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Wed Oct 31 14:18:58 UTC 2012


commit: http://git.uclibc.org/uClibc/commit/?id=1ca62f5d3c57825924e62f41614eda00d888bd62
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Thanks to Manuel Rüger for spotting this one.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 utils/getconf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/utils/getconf.c b/utils/getconf.c
index dba4a9e..1b6fb1c 100644
--- a/utils/getconf.c
+++ b/utils/getconf.c
@@ -1054,7 +1054,7 @@ static const struct { const char *name; int num; } specs[] =
 static const int nspecs = sizeof (specs) / sizeof (specs[0]);
 
 #ifndef __UCLIBC_HAS___PROGNAME__
-static const char *__progname = "getconf"
+static const char *__progname = "getconf";
 #endif
 
 static attribute_noreturn void


More information about the uClibc-cvs mailing list