diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-25 09:48:13 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-25 09:48:13 +0000 |
commit | 46f2e780812e5c5aa8214b7fbe33643703734fd5 (patch) | |
tree | f6568caf0209649e173eb032f6178c81448f39e6 /include | |
parent | f02e226057b4cd3ff035e607ccb296d1a9831829 (diff) | |
download | newlib-46f2e780812e5c5aa8214b7fbe33643703734fd5.zip newlib-46f2e780812e5c5aa8214b7fbe33643703734fd5.tar.gz newlib-46f2e780812e5c5aa8214b7fbe33643703734fd5.tar.bz2 |
fix compile time warning message
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/bfdlink.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 72b2311..5c76a7b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2001-08-25 Nick Clifton <nickc@cambridge.redhat.com> + + * bfdlink.h (struct bfd_link_info): Change 'spare_dynamic_tags' to + unsigned to remove a compile time warning message. + 2001-08-24 H.J. Lu <hjl@gnu.org> * bfdlink.h (bfd_link_hash_table_type): New. The linker hash diff --git a/include/bfdlink.h b/include/bfdlink.h index bfed980..9ada606 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -295,7 +295,7 @@ struct bfd_link_info boolean combreloc; /* How many spare .dynamic DT_NULL entries should be added? */ - int spare_dynamic_tags; + unsigned int spare_dynamic_tags; }; /* This structures holds a set of callback functions. These are |