Change regcache list to be an hash map
[deliverable/binutils-gdb.git] / gdb / gdb_obstack.c
index b972eabeb99a738d1592b723dcf6b624b1976bb7..01257120d076c51ff4459e6c53896c829eab2d23 100644 (file)
@@ -1,6 +1,6 @@
 /* Obstack wrapper for GDB.
 
-   Copyright (C) 2013-2015 Free Software Foundation, Inc.
+   Copyright (C) 2013-2019 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -43,5 +43,5 @@ obconcat (struct obstack *obstackp, ...)
   va_end (ap);
   obstack_1grow (obstackp, 0);
 
-  return obstack_finish (obstackp);
+  return (char *) obstack_finish (obstackp);
 }
This page took 0.028404 seconds and 4 git commands to generate.