diff options
author | Cary Coutant <ccoutant@gmail.com> | 2017-12-01 13:44:54 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2017-12-01 13:45:27 -0800 |
commit | 7ef67ba53397c52a87375403aa614c52b94ccc73 (patch) | |
tree | f286d125fa9f2e2a30397cd66a7f425706857f4a /gold | |
parent | ec6a20c268c3be4c34b951bc7d02543dca956108 (diff) | |
download | fsf-binutils-gdb-7ef67ba53397c52a87375403aa614c52b94ccc73.zip fsf-binutils-gdb-7ef67ba53397c52a87375403aa614c52b94ccc73.tar.gz fsf-binutils-gdb-7ef67ba53397c52a87375403aa614c52b94ccc73.tar.bz2 |
Fix localized help string output for -fuse-ld.
gold/
PR gold/22042
* options.h (-fuse-ld): Use NULL instead of empty string.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 5 | ||||
-rw-r--r-- | gold/options.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index bb84efa..3c0b046 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2017-12-01 Cary Coutant <ccoutant@gmail.com> + + PR gold/22042 + * options.h (-fuse-ld): Use NULL instead of empty string. + 2017-12-01 Benjamin Peterson <bp@benjamin.pe> PR gold/22406 diff --git a/gold/options.h b/gold/options.h index 2a43e8d..0437510 100644 --- a/gold/options.h +++ b/gold/options.h @@ -894,7 +894,7 @@ class General_options DEFINE_string(fuse_ld, options::ONE_DASH, '\0', "", N_("Ignored for GCC linker option compatibility"), - ""); + NULL); // g |