diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-19 01:27:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-19 01:27:20 +0000 |
commit | c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c (patch) | |
tree | 103a6d3e66fd142e0f2b8d57a8156b87a6f590c9 /editors | |
parent | 885b6f29ae2740399231427dc2c6efe47db9a80d (diff) | |
download | busybox-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.tar.gz |
mdev: Rob's #if forest removal
*: remove superfluous conts in "f(type *const param)"
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |