gdbserver/tracepoint: Add casts out of tpoint->handle
[deliverable/binutils-gdb.git] / gdb / jv-exp.y
index 60b7d2e4e0aa830290e95ad8e4d16b958c150050..8edd94e0e0ca71a46fb1900340bced78bf320899 100644 (file)
@@ -355,7 +355,7 @@ QualifiedName:
                    {
                      char *buf;
 
-                     buf = malloc ($$.length + 1);
+                     buf = (char *) malloc ($$.length + 1);
                      make_cleanup (free, buf);
                      sprintf (buf, "%.*s.%.*s",
                               $1.length, $1.ptr, $3.length, $3.ptr);
This page took 0.023254 seconds and 4 git commands to generate.