]> git.saurik.com Git - bison.git/commitdiff
(prepare): Use xstrdup to convert char const * to char *, to avoid GCC
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Oct 2002 06:01:07 +0000 (06:01 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Oct 2002 06:01:07 +0000 (06:01 +0000)
warning.

src/output.c

index 6eb69ed54ae4c5c35b29430d13e53aa57f6cd6e2..658860edd6b13c19b502783797d13971c45e1ae4 100644 (file)
@@ -306,9 +306,9 @@ prepare_states (void)
 
 
 
-/*----------------------------------.
-| Output the user actions to OOUT.  |
-`----------------------------------*/
+/*---------------------------------.
+| Output the user actions to OUT.  |
+`---------------------------------*/
 
 static void
 user_actions_output (FILE *out)
@@ -620,7 +620,7 @@ prepare (void)
     }
 
   /* Parse the skeleton file and output the needed parsers.  */
-  muscle_insert ("skeleton", skeleton);
+  muscle_insert ("skeleton", xstrdup (skeleton));
 }