diff options
author | Nick Clifton <nickc@redhat.com> | 2020-04-02 08:38:48 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-04-02 08:38:48 +0100 |
commit | 4f5bd88505801cb9b405c83a4faa4111475dbc62 (patch) | |
tree | 076fd8608bc340cce8913b70bc8b543b907e2c26 /ld | |
parent | 1aa98955b19676497f89112a0962f24f359ce761 (diff) | |
download | gdb-4f5bd88505801cb9b405c83a4faa4111475dbc62.zip gdb-4f5bd88505801cb9b405c83a4faa4111475dbc62.tar.gz gdb-4f5bd88505801cb9b405c83a4faa4111475dbc62.tar.bz2 |
Replace "use use" in a warning message with "use".
PR ld/25747
* ldfile.c (ldfile_open_file): Fix typo in warning message.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ldfile.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 6c95224..a2964eb 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2020-04-02 Nick Clifton <nickc@redhat.com> + + PR ld/25747 + * ldfile.c (ldfile_open_file): Fix typo in warning message. + 2020-04-01 H.J. Lu <hongjiu.lu@intel.com> PR ld/25749 diff --git a/ld/ldfile.c b/ld/ldfile.c index 3248a04..d98429d 100644 --- a/ld/ldfile.c +++ b/ld/ldfile.c @@ -454,7 +454,7 @@ ldfile_open_file (lang_input_statement_type *entry) { const char * base = lbasename (entry->filename); - einfo (_("%P: note to link with %s use use -l:%s or rename it to lib%s\n"), + einfo (_("%P: note to link with %s use -l:%s or rename it to lib%s\n"), entry->filename, base, base); bfd_close (entry->the_bfd); entry->the_bfd = NULL; |