aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/aix.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-02-29 05:53:53 +0000
committerAlan Modra <amodra@gmail.com>2000-02-29 05:53:53 +0000
commit40d109bfbc1e7666dedf73f61ef7592c8d272e42 (patch)
tree4d3959bccb1e77b9f4e343f7c7f2098377f02802 /ld/emultempl/aix.em
parent244106e8631dd92999e566fb523e90a6fe901fd1 (diff)
downloadgdb-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/aix.em')
-rw-r--r--ld/emultempl/aix.em3
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em
index 6748af0..dd81b5f 100644
--- a/ld/emultempl/aix.em
+++ b/ld/emultempl/aix.em
@@ -1049,6 +1049,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
0, /* place_orphan */
0, /* set_symbols */
gld${EMULATION_NAME}_parse_args,
- gld${EMULATION_NAME}_unrecognized_file
+ gld${EMULATION_NAME}_unrecognized_file,
+ NULL /* find_potential_libraries */
};
EOF