]> git.saurik.com Git - bison.git/commitdiff
remove useless variable.
authorAkim Demaille <demaille@gostai.com>
Tue, 19 May 2009 09:29:40 +0000 (11:29 +0200)
committerAkim Demaille <demaille@gostai.com>
Tue, 19 May 2009 09:36:32 +0000 (11:36 +0200)
* src/getargs.c (skeleton_arg): Remove now useless variable.
Should help the compiler see that this printf-like call is sane.

ChangeLog
src/getargs.c

index 93c085360cae78bc269137b857af0a2747687f5d..a46ff2bac828027ad46772c91298ce43f478660b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-19  Akim Demaille  <demaille@gostai.com>
+
+       remove useless variable.
+       * src/getargs.c (skeleton_arg): Remove now useless variable.
+       Should help the compiler see that this printf-like call is sane.
+
 2009-05-11  Akim Demaille  <demaille@gostai.com>
 
        doc: use C++ headers.
index 962dad4db1ff8f7fa6c31bf94ab1009bb0282375..3852de045deab46374896c870702f4ec8c13fbaa 100644 (file)
@@ -379,11 +379,7 @@ skeleton_arg (char const *arg, int prio, location loc)
       skeleton = arg;
     }
   else if (prio == skeleton_prio)
-    {
-      char const *msg =
-       _("multiple skeleton declarations are invalid");
-      complain_at (loc, msg);
-    }
+    complain_at (loc, _("multiple skeleton declarations are invalid"));
 }
 
 void