From: Christoph Mallon Date: Mon, 15 Sep 2008 08:47:29 +0000 (+0000) Subject: Spell the option -Wpointer-arith, not -Wpointer_arith. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=9d562f8239c1c0232c7254f53b78e2b74325e1a7;p=cparser Spell the option -Wpointer-arith, not -Wpointer_arith. [r21957] --- diff --git a/warning.c b/warning.c index 3867718..e2014d2 100644 --- a/warning.c +++ b/warning.c @@ -157,7 +157,7 @@ void set_warning_opt(const char *const opt) OPT("old-style-definition", old_style_definition); OPT("packed", packed); OPT("padded", padded); - OPT("pointer_arith", pointer_arith); + OPT("pointer-arith", pointer_arith); OPT("redundant-decls", redundant_decls); OPT("return-type", return_type); OPT("shadow", shadow);