From: Daiki Ueno Date: Sun, 21 Oct 2018 06:35:32 +0000 (+0200) Subject: xgettext: Fix compiler warning X-Git-Tag: v0.20~304 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1164f4c9b714d9451dd19fe8a063fcc1612b5c1;p=thirdparty%2Fgettext.git xgettext: Fix compiler warning * gettext-tools/src/x-javascript.c (phase5_scan_regexp): Remove implicit argument. Reported in: . --- diff --git a/gettext-tools/src/x-javascript.c b/gettext-tools/src/x-javascript.c index 2db00abe6..62a2efcce 100644 --- a/gettext-tools/src/x-javascript.c +++ b/gettext-tools/src/x-javascript.c @@ -931,7 +931,7 @@ static int phase5_pushback_length; static token_type_ty last_token_type = token_type_other; static void -phase5_scan_regexp () +phase5_scan_regexp (void) { int c; @@ -1332,7 +1332,7 @@ phase5_get (token_ty *tp) tp->type = last_token_type = token_type_operator; else { - phase5_scan_regexp (tp); + phase5_scan_regexp (); tp->type = last_token_type = token_type_regexp; } return;