]> git.saurik.com Git - bison.git/commitdiff
(Duplicate representation of merged trees): Add casts to pacify g++.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 8 Sep 2005 18:41:46 +0000 (18:41 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 8 Sep 2005 18:41:46 +0000 (18:41 +0000)
tests/glr-regression.at

index 0fb970577032e3b75fa506c01ef5819810c15d41..6f6562c26b0502b2272c867d545f4b533898a130 100644 (file)
@@ -389,7 +389,8 @@ static char *
 make_value (char *parent, char *child)
 {
   char const format[] = "%s <- %s";
-  char *value = malloc (strlen (parent) + strlen (child) + sizeof format);
+  char *value =
+    (char *) malloc (strlen (parent) + strlen (child) + sizeof format);
   sprintf (value, format, parent, child);
   return value;
 }
@@ -398,7 +399,8 @@ static char *
 merge (YYSTYPE s1, YYSTYPE s2)
 {
   char const format[] = "merge{ %s and %s }";
-  char *value = malloc (strlen (s1.ptr) + strlen (s2.ptr) + sizeof format);
+  char *value =
+    (char *) malloc (strlen (s1.ptr) + strlen (s2.ptr) + sizeof format);
   sprintf (value, format, s1.ptr, s2.ptr);
   return value;
 }