summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/archive.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 14cbb1076b2..0fd031c4d6b 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 0ca3db1542e..437a0859eac 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;