diff options
author | Pedro Alves <palves@redhat.com> | 2008-08-10 18:49:09 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-08-10 18:49:09 +0000 |
commit | ae38509c56c44e4729477f9af84377f9e0405b37 (patch) | |
tree | 97bf8d50081f2730cdc4ea4959e42b0fa7ef1c51 /bfd | |
parent | 6eb7ee032e6d1ab881dae7e5ef42d101d94f1cbd (diff) | |
download | binutils-ae38509c56c44e4729477f9af84377f9e0405b37.zip binutils-ae38509c56c44e4729477f9af84377f9e0405b37.tar.gz binutils-ae38509c56c44e4729477f9af84377f9e0405b37.tar.bz2 |
* archive.c (_bfd_archive_bsd_update_armap_timestamp): Cast stat
st_mtime to long before comparison.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/archive.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 14cbb10..0fd031c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2008-08-09 Pedro Alves <pedro@codesourcery.com> + + * archive.c (_bfd_archive_bsd_update_armap_timestamp): Cast stat + st_mtime to long before comparison. + 2008-08-08 Anatoly Sokolov <aesok@post.ru> * archures.c (bfd_mach_avr25, bfd_mach_avr31, bfd_mach_avr35, diff --git a/bfd/archive.c b/bfd/archive.c index 0ca3db1..437a085 100644 --- a/bfd/archive.c +++ b/bfd/archive.c @@ -2311,7 +2311,7 @@ _bfd_archive_bsd_update_armap_timestamp (bfd *arch) /* Can't read mod time for some reason. */ return TRUE; } - if (archstat.st_mtime <= bfd_ardata (arch)->armap_timestamp) + if (((long) archstat.st_mtime) <= bfd_ardata (arch)->armap_timestamp) /* OK by the linker's rules. */ return TRUE; |