* osabi.c (gdbarch_init_osabi): Reformat error message with better

line breaks.
This commit is contained in:
Jim Blandy 2003-12-13 21:41:10 +00:00
parent 1b3bb3d032
commit e481341f06
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2003-12-13 Jim Blandy <jimb@redhat.com>
* osabi.c (gdbarch_init_osabi): Reformat error message with better
line breaks.
2003-12-13 Mark Kettenis <kettenis@gnu.org>
* blockframe.c (inside_main_func): Reformat. Introduce new local

View File

@ -347,11 +347,11 @@ gdbarch_init_osabi (struct gdbarch_info info, struct gdbarch *gdbarch)
}
}
warning ("A handler for the OS ABI \"%s\" is not built into this "
"configuration of GDB. "
"Attempting to continue with the default %s settings",
gdbarch_osabi_name (info.osabi),
info.bfd_arch_info->printable_name);
warning
("A handler for the OS ABI \"%s\" is not built into this configuration\n"
"of GDB. Attempting to continue with the default %s settings.\n",
gdbarch_osabi_name (info.osabi),
info.bfd_arch_info->printable_name);
}