Call warning() to print warnings, which deals properly with leading and
authorFred Fish <fnf@specifix.com>
Fri, 24 Apr 1992 01:45:47 +0000 (01:45 +0000)
committerFred Fish <fnf@specifix.com>
Fri, 24 Apr 1992 01:45:47 +0000 (01:45 +0000)
trailing newlines, as well as presenting a consistent prefix for warnings
(IE "warning: ").

gdb/ChangeLog
gdb/core.c

index 734630fa3c5a932bc0ec0785dc3bda707e6dd153..57796e2dde0357f9734b3359313fb3367887b568 100644 (file)
@@ -1,3 +1,7 @@
+Thu Apr 23 18:43:17 1992  Fred Fish  (fnf@cygnus.com)
+
+       * core.c (core_open):  Call warning() to print warnings.
+
 Wed Apr 22 09:55:42 1992  Stu Grossman  (grossman at cygnus.com)
 
        * symtab.c (lookup_symbol):  Need to check if msymbol->name is
index 4ae49331a1bd53c4a0312f0134ed314e5db7cd92..3c1e4bb94b461748784347d59c642479880c7a4a 100644 (file)
@@ -189,9 +189,9 @@ core_open (filename, from_tty)
     select_frame (get_current_frame (), 0);
     print_stack_frame (selected_frame, selected_frame_level, 1);
   } else {
-    printf (
-"Warning: you won't be able to access this core file until you terminate\n\
-your %s; do ``info files''\n", current_target->to_longname);
+    warning (
+"you won't be able to access this core file until you terminate\n\
+your %s; do ``info files''", current_target->to_longname);
   }
 }
 
@@ -263,9 +263,9 @@ validate_files ()
   if (exec_bfd && core_bfd)
     {
       if (!core_file_matches_executable_p (core_bfd, exec_bfd))
-       printf ("Warning: core file may not match specified executable file.\n");
+       warning ("core file may not match specified executable file.");
       else if (bfd_get_mtime(exec_bfd) > bfd_get_mtime(core_bfd))
-       printf ("Warning: exec file is newer than core file.\n");
+       warning ("exec file is newer than core file.");
     }
 }