diff options
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 | } |