Support 128-bit IEEE floating-point types on Intel and Power
[deliverable/binutils-gdb.git] / gdb / inf-child.c
index ada570d96f6e41d5ca93c0acf521c548039b1906..7909b0c2a42d344263f9c61abad691a10db248fa 100644 (file)
@@ -1,6 +1,6 @@
 /* Base/prototype target for default child (native) targets.
 
-   Copyright (C) 1988-2015 Free Software Foundation, Inc.
+   Copyright (C) 1988-2016 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -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.027641 seconds and 4 git commands to generate.