summaryrefslogtreecommitdiff
path: root/ld/emultempl/armcoff.em
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2000-02-29 05:53:53 +0000
committerAlan Modra <amodra@bigpond.net.au>2000-02-29 05:53:53 +0000
commit77da64d7bf014eda875390a930649ad5af9bec11 (patch)
tree0353ba9568c4c431c7aa151e6bda18beebe3a8c6 /ld/emultempl/armcoff.em
parenta5a13b0c4222807d08a3a1e83185d8feef3b8e3a (diff)
downloadbinutils-redhat-77da64d7bf014eda875390a930649ad5af9bec11.tar.gz
GCC warning fix: Add missing NULL initialiser for find_potential_libraries.
Diffstat (limited to 'ld/emultempl/armcoff.em')
-rw-r--r--ld/emultempl/armcoff.em3
1 files changed, 2 insertions, 1 deletions
diff --git a/ld/emultempl/armcoff.em b/ld/emultempl/armcoff.em
index 79e1e80e37..d73b3d172f 100644
--- a/ld/emultempl/armcoff.em
+++ b/ld/emultempl/armcoff.em
@@ -286,6 +286,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
gld${EMULATION_NAME}_parse_args,
NULL, /* unrecognised file */
gld${EMULATION_NAME}_list_options,
- NULL /* recognized file */
+ NULL, /* recognized file */
+ NULL /* find_potential_libraries */
};
EOF