]> 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:34:17 +0000 (11:34 +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 71cf3a8ad0e84ff783785d7b01e29ee92b026d92..9ae746fe6b8d3fd29d3a80c47fe6eeb1403fe521 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-15  Akim Demaille  <demaille@gostai.com>
 
        Rename token.prefix as api.tokens.prefix.
index e5b016a64727224d72aaffa5e14b5d9240d6e918..6f956926fbf341031ccecf40afc578207faf617b 100644 (file)
@@ -385,11 +385,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