Change simple call to printf of error message to a call to error(). Output
authorFred Fish <fnf@specifix.com>
Sat, 30 Nov 1991 01:02:03 +0000 (01:02 +0000)
committerFred Fish <fnf@specifix.com>
Sat, 30 Nov 1991 01:02:03 +0000 (01:02 +0000)
was not getting flushed and was not being newline terminated.

gdb/ChangeLog
gdb/symtab.c

index 23cdf5ed078a0c3d17f4a74bf65e41905db60b1b..14e4873039348e59323b5f5afc95f6a48ef109f3 100644 (file)
@@ -1,3 +1,8 @@
+Fri Nov 29 16:59:25 1991  Fred Fish  (fnf at cygnus.com)
+
+       * symtab.c (sources_info):  Change simple printf of error message
+       to call to error().
+
 Fri Nov 29 16:04:21 1991  Roland H. Pesch  (pesch at cygnus.com)
 
        * doc/gdb.texinfo: remove leading comments that survived M4 but
index 3c5eea356912ca70a24c1b5a4e67227a682de1bb..0e1ead65022bccd214483ac915653ef741ab5790 100644 (file)
@@ -2372,8 +2372,7 @@ sources_info ()
   
   if (symtab_list == 0 && partial_symtab_list == 0)
     {
-      printf (no_symtab_msg);
-      return;
+      error (no_symtab_msg);
     }
   
   printf_filtered ("Source files for which symbols have been read in:\n\n");