OSDN Git Service

* xcoffread.c (SYMNAME_ALLOC): Correct syntax.
authorDaniel Jacobowitz <dan@debian.org>
Thu, 21 Aug 2008 21:22:38 +0000 (21:22 +0000)
committerDaniel Jacobowitz <dan@debian.org>
Thu, 21 Aug 2008 21:22:38 +0000 (21:22 +0000)
gdb/ChangeLog
gdb/xcoffread.c

index 43eddfc..b795305 100644 (file)
@@ -1,3 +1,7 @@
+2008-08-21  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * xcoffread.c (SYMNAME_ALLOC): Correct syntax.
+
 2008-08-21  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * findvar.c (locate_var_value): Do not call get_frame_arch
index 25fefca..54e2aba 100644 (file)
@@ -1427,7 +1427,7 @@ read_xcoff_symtab (struct partial_symtab *pst)
 
 
 #define        SYMNAME_ALLOC(NAME, ALLOCED)    \
-  (ALLOCED) ? (NAME) : obsavestring ((NAME), strlen (NAME), &objfile->objfile_obstack);
+  ((ALLOCED) ? (NAME) : obsavestring ((NAME), strlen (NAME), &objfile->objfile_obstack))
 
 
 /* process one xcoff symbol. */