aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/awk.c4
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
524static void syntax_error(const char *const message) NORETURN; 524static void syntax_error(const char *message) NORETURN;
525static void syntax_error(const char *const message) 525static 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}