diff options
author | Nick Clifton <nickc@redhat.com> | 2008-09-09 09:45:31 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-09-09 09:45:31 +0000 |
commit | 44e36d8a7bda0394ebfe93378868c79b63c24aa3 (patch) | |
tree | 9b82b5090a4b1411ead87d9ee999c9f033cb1b89 /ld | |
parent | 502e814e6ef9164107cb374e8c578a8f6c7e0550 (diff) | |
download | gdb-44e36d8a7bda0394ebfe93378868c79b63c24aa3.zip gdb-44e36d8a7bda0394ebfe93378868c79b63c24aa3.tar.gz gdb-44e36d8a7bda0394ebfe93378868c79b63c24aa3.tar.bz2 |
* emultempl/pe.em (pe_find_data_imports): Add trailing newline
to warning message.
* emultempl/pep.em (pep_find_data_imports): Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/emultempl/pe.em | 6 | ||||
-rw-r--r-- | ld/emultempl/pep.em | 4 |
3 files changed, 11 insertions, 5 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index e9ee029..52afdf3 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2008-09-09 Peter Rosin <peda@lysator.liu.se> (tiny change) + + * emultempl/pe.em (pe_find_data_imports): Add trailing newline + to warning message. + * emultempl/pep.em (pep_find_data_imports): Likewise. + 2008-09-08 H.J. Lu <hongjiu.lu@intel.com> 2008-09-07 Alan Modra <amodra@bigpond.net.au> diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index 865cfaa..cec399a 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -936,7 +936,7 @@ pe_find_data_imports (void) { warned = TRUE; einfo (_("%P: warning: auto-importing has been activated without --enable-auto-import specified on the command line.\n\ -This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.")); +This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.\n")); } } @@ -1122,7 +1122,7 @@ gld_${EMULATION_NAME}_after_open (void) if (nrelocs < 0) { free (relocs); - einfo ("%X%P: unable to process relocs: %E"); + einfo ("%X%P: unable to process relocs: %E\n"); return; } @@ -1380,7 +1380,7 @@ gld_${EMULATION_NAME}_before_allocation (void) (is->the_bfd, & link_info, support_old_code)) { /* xgettext:c-format */ - einfo (_("Errors encountered processing file %s for interworking"), + einfo (_("Errors encountered processing file %s for interworking\n"), is->filename); } } diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index 21bcf01..0b9bf40 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -895,7 +895,7 @@ pep_find_data_imports (void) { warned = TRUE; einfo (_("%P: warning: auto-importing has been activated without --enable-auto-import specified on the command line.\n\ -This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.")); +This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.\n")); } } @@ -1060,7 +1060,7 @@ gld_${EMULATION_NAME}_after_open (void) if (nrelocs < 0) { free (relocs); - einfo ("%X%P: unable to process relocs: %E"); + einfo ("%X%P: unable to process relocs: %E\n"); return; } |