diff options
-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; |