From: Sami Kerola Date: Sun, 28 Sep 2014 19:51:47 +0000 (+0100) Subject: include/debug: remove duplicate 'const' declaration warning X-Git-Tag: v2.26-rc1~418 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aeeb81317e6887005562b790710f774f09d329c2;p=thirdparty%2Futil-linux.git include/debug: remove duplicate 'const' declaration warning ./include/debug.h:89:55: warning: duplicate 'const' declaration specifier [-Wduplicate-decl-specifier] Signed-off-by: Sami Kerola --- diff --git a/include/debug.h b/include/debug.h index 25045aa942..4dfc1eb32f 100644 --- a/include/debug.h +++ b/include/debug.h @@ -86,7 +86,7 @@ ul_debugobj(void *handler, const char *mesg, ...) fputc('\n', stderr); } -static inline int parse_envmask(const struct dbg_mask const flagnames[], +static inline int parse_envmask(const struct dbg_mask flagnames[], const char *mask) { int res;