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/lnk960.em | |
parent | 244106e8631dd92999e566fb523e90a6fe901fd1 (diff) | |
download | gdb-40d109bfbc1e7666dedf73f61ef7592c8d272e42.zip gdb-40d109bfbc1e7666dedf73f61ef7592c8d272e42.tar.gz gdb-40d109bfbc1e7666dedf73f61ef7592c8d272e42.tar.bz2 |
GCC warning fix: Add missing NULL initialiser for find_potential_libraries.
Diffstat (limited to 'ld/emultempl/lnk960.em')
-rw-r--r-- | ld/emultempl/lnk960.em | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/emultempl/lnk960.em b/ld/emultempl/lnk960.em index 9ab6b3f..a4c3257 100644 --- a/ld/emultempl/lnk960.em +++ b/ld/emultempl/lnk960.em @@ -329,6 +329,7 @@ struct ld_emulation_xfer_struct ld_lnk960_emulation = NULL, /* parse args */ NULL, /* unrecognized file */ NULL, /* list options */ - NULL /* recognized file */ + NULL, /* recognized file */ + NULL /* find_potential_libraries */ }; EOF |