diff options
author | Alan Modra <amodra@gmail.com> | 2000-02-29 05:53:53 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-02-29 05:53:53 +0000 |
commit | 40d109bfbc1e7666dedf73f61ef7592c8d272e42 (patch) | |
tree | 4d3959bccb1e77b9f4e343f7c7f2098377f02802 /ld/emultempl/gld960c.em | |
parent | 244106e8631dd92999e566fb523e90a6fe901fd1 (diff) | |
download | ppe42-binutils-40d109bfbc1e7666dedf73f61ef7592c8d272e42.tar.gz ppe42-binutils-40d109bfbc1e7666dedf73f61ef7592c8d272e42.zip |
GCC warning fix: Add missing NULL initialiser for find_potential_libraries.
Diffstat (limited to 'ld/emultempl/gld960c.em')
-rw-r--r-- | ld/emultempl/gld960c.em | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/emultempl/gld960c.em b/ld/emultempl/gld960c.em index fe8d0b0e3f..c7f162455c 100644 --- a/ld/emultempl/gld960c.em +++ b/ld/emultempl/gld960c.em @@ -193,6 +193,7 @@ struct ld_emulation_xfer_struct ld_gld960coff_emulation = NULL, /* parse args */ NULL, /* unrecognized file */ NULL, /* list options */ - NULL /* recognized file */ + NULL, /* recognized file */ + NULL /* find_potential_libraries */ }; EOF |