diff options
author | Nick Clifton <nickc@redhat.com> | 2001-02-07 23:16:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-02-07 23:16:22 +0000 |
commit | 7340082dc8d4b1fcd14f6d18fc0086fdae31d556 (patch) | |
tree | 93c292ba0787e54e9ce8723f47602adb16e17c30 /binutils/bucomm.c | |
parent | 4d6ed7c8cea13961e6c4bd3425dd679eb44ebc34 (diff) | |
download | gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.zip gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.tar.gz gdb-7340082dc8d4b1fcd14f6d18fc0086fdae31d556.tar.bz2 |
Change bfd_target_vector from an array to a pointer
Diffstat (limited to 'binutils/bucomm.c')
-rw-r--r-- | binutils/bucomm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/bucomm.c b/binutils/bucomm.c index 86c327f..1cf904d 100644 --- a/binutils/bucomm.c +++ b/binutils/bucomm.c @@ -157,7 +157,7 @@ list_supported_targets (name, f) const char *name; FILE *f; { - extern bfd_target *bfd_target_vector[]; + extern const bfd_target *const *bfd_target_vector; int t; if (name == NULL) |