linux-mips-low.c: Change "private" variable name
[deliverable/binutils-gdb.git] / gdb / inf-child.c
index ada570d96f6e41d5ca93c0acf521c548039b1906..3566331c67514b01dcd6c48879caf318fa8190ab 100644 (file)
@@ -352,7 +352,7 @@ inf_child_fileio_readlink (struct target_ops *self,
       return NULL;
     }
 
-  ret = xmalloc (len + 1);
+  ret = (char *) xmalloc (len + 1);
   memcpy (ret, buf, len);
   ret[len] = '\0';
   return ret;
This page took 0.023422 seconds and 4 git commands to generate.