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 | Read 2 byte (16 bit addresses) when needed. (diff) | |
download | binutils-gdb-40d109bfbc1e7666dedf73f61ef7592c8d272e42.tar.gz binutils-gdb-40d109bfbc1e7666dedf73f61ef7592c8d272e42.tar.bz2 binutils-gdb-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 fe8d0b0e3f7..c7f162455cb 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 |