From c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 19 Apr 2009 01:27:20 +0000 Subject: mdev: Rob's #if forest removal *: remove superfluous conts in "f(type *const param)" --- editors/awk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/awk.c b/editors/awk.c index 89ce2cfc8..924cfcfab 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -521,8 +521,8 @@ static void zero_out_var(var * vp) memset(vp, 0, sizeof(*vp)); } -static void syntax_error(const char *const message) NORETURN; -static void syntax_error(const char *const message) +static void syntax_error(const char *message) NORETURN; +static void syntax_error(const char *message) { bb_error_msg_and_die("%s:%i: %s", g_progname, g_lineno, message); } -- cgit v1.2.3