summaryrefslogtreecommitdiff
path: root/bfd/coffcode.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2004-10-13 18:14:40 +0000
committerH.J. Lu <hjl@lucon.org>2004-10-13 18:14:40 +0000
commit8a5fd986eea45ace9cf4842dc947ff0d2cfbc20c (patch)
treefc3fb8a409763fb19cf67445ead00c34c91b8344 /bfd/coffcode.h
parente00051e8434896b64b1943f7229f3feb424c0fd0 (diff)
downloadbinutils-redhat-8a5fd986eea45ace9cf4842dc947ff0d2cfbc20c.tar.gz
2004-10-13 H.J. Lu <hongjiu.lu@intel.com>
PR 440 * coffcode.h (coff_compute_section_file_positions): Cast to bfd_vma when computing page alignment.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r--bfd/coffcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index 9d78c25257..7bfdc6b175 100644
--- a/bfd/coffcode.h
+++ b/bfd/coffcode.h
@@ -3243,7 +3243,7 @@ coff_compute_section_file_positions (abfd)
#ifdef COFF_PAGE_SIZE
if ((abfd->flags & D_PAGED) != 0
&& (current->flags & SEC_ALLOC) != 0)
- sofar += (current->vma - sofar) % page_size;
+ sofar += (current->vma - (bfd_vma) sofar) % page_size;
#endif
current->filepos = sofar;