diff options
author | Fred Fish <fnf@specifix.com> | 1991-11-12 03:23:32 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-11-12 03:23:32 +0000 |
commit | fb182850985cdd243f9e4782e83a141edb5aabdf (patch) | |
tree | d9e7250e0e86aa9d1f5f49cbcb24a835d5586c21 /gdb/core.c | |
parent | 4807bcf9a39f312d6a6b5189122520a666ec35a8 (diff) | |
download | binutils-fb182850985cdd243f9e4782e83a141edb5aabdf.zip binutils-fb182850985cdd243f9e4782e83a141edb5aabdf.tar.gz binutils-fb182850985cdd243f9e4782e83a141edb5aabdf.tar.bz2 |
Minor rewording of message containing name of program that generated a
core file (core.c), permanently remove the register_addr() stub (elfread.c),
move a misplaced #endif (procfs.c), and add fetch_core_registers func for
core file support (procfs.c).
Diffstat (limited to 'gdb/core.c')
-rw-r--r-- | gdb/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ core_open (filename, from_tty) p = bfd_core_file_failing_command (core_bfd); if (p) - printf ("Core file invoked as `%s'.\n", p); + printf ("Core was generated by `%s'.\n", p); siggy = bfd_core_file_failing_signal (core_bfd); if (siggy > 0) |