* symtab.c (find_pc_symtab): Call warning, not printf directly.
authorJim Kingdon <jkingdon@engr.sgi.com>
Sat, 17 Jul 1993 01:58:33 +0000 (01:58 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sat, 17 Jul 1993 01:58:33 +0000 (01:58 +0000)
* solib.c (solib_add): Use x{re,m}alloc, not {re,m}alloc.

gdb/ChangeLog
gdb/symtab.c

index 258729ffaf32ac80137582e0fa2fb35739d60e0b..eb7dc327984e9af1a7a08ba83a6598f007c78df3 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jul 16 18:48:52 1993  Jim Kingdon  (kingdon@rtl.cygnus.com)
+
+       * symtab.c (find_pc_symtab): Call warning, not printf directly.
+
+       * solib.c (solib_add): Use x{re,m}alloc, not {re,m}alloc.
+
 Fri Jul 16 09:56:42 1993  Ian Lance Taylor  (ian@cygnus.com)
 
        * mipsread.c: No longer need to undefine ZMAGIC.
index f8b2d81324bd4930c876f1e2cbc661f51b75993c..38ccee18941ae1f90bbc397d95bf0257f35228a3 100644 (file)
@@ -958,7 +958,11 @@ find_pc_symtab (pc)
   if (ps)
     {
       if (ps->readin)
-       printf_filtered ("(Internal error: pc 0x%x in read in psymtab, but not in symtab.)\n", pc);
+       /* Might want to error() here (in case symtab is corrupt and
+          will cause a core dump), but maybe we can successfully
+          continue, so let's not.  */
+       warning ("\
+(Internal error: pc 0x%x in read in psymtab, but not in symtab.)\n", pc);
       s = PSYMTAB_TO_SYMTAB (ps);
     }
   return (s);