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-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.tar.gz busybox-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.tar.bz2 busybox-w32-c7cc5a9432d2224d4e0fe3cf8ae72abb7ef25e2c.zip |
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) | |||
521 | memset(vp, 0, sizeof(*vp)); | 521 | memset(vp, 0, sizeof(*vp)); |
522 | } | 522 | } |
523 | 523 | ||
524 | static void syntax_error(const char *const message) NORETURN; | 524 | static void syntax_error(const char *message) NORETURN; |
525 | static void syntax_error(const char *const message) | 525 | static void syntax_error(const char *message) |
526 | { | 526 | { |
527 | bb_error_msg_and_die("%s:%i: %s", g_progname, g_lineno, message); | 527 | bb_error_msg_and_die("%s:%i: %s", g_progname, g_lineno, message); |
528 | } | 528 | } |