A simple fix to make latest git head compile for me. Btw. it looks like http://git.uclibc.org/uClibc/ doesn't get updated anymore?
- Manuel
From ce8e01a0baf5fd7cf3a66030da5115918f80ab3b Mon Sep 17 00:00:00 2001 From: Manuel Rueger <[email protected]> Date: Wed, 10 Oct 2012 15:45:19 +0200 Subject: [PATCH] Fix missing semicolon --- utils/getconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.12
signature.asc
Description: OpenPGP digital signature
_______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
