aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/coff.h
diff options
context:
space:
mode:
authornotaz2012-11-22 00:18:21 +0200
committernotaz2012-11-24 04:25:25 +0200
commitc668f24877c063db881fa8d1eeb8a6fbc649d5a0 (patch)
tree14fb15373e2d06a79012f3549e257bcb26ef7f76 /libpcsxcore/coff.h
parentea66e8840b75b0284f192e6fa068857b91ef08eb (diff)
downloadpcsx_rearmed-c668f24877c063db881fa8d1eeb8a6fbc649d5a0.tar.gz
pcsx_rearmed-c668f24877c063db881fa8d1eeb8a6fbc649d5a0.tar.bz2
pcsx_rearmed-c668f24877c063db881fa8d1eeb8a6fbc649d5a0.zip
fix some more 32/64bit incompatibilities
Diffstat (limited to 'libpcsxcore/coff.h')
-rw-r--r--libpcsxcore/coff.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpcsxcore/coff.h b/libpcsxcore/coff.h
index 1d084d2..b472e1d 100644
--- a/libpcsxcore/coff.h
+++ b/libpcsxcore/coff.h
@@ -25,9 +25,9 @@
struct external_filehdr {
unsigned short f_magic; /* magic number */
unsigned short f_nscns; /* number of sections */
- unsigned long f_timdat; /* time & date stamp */
- unsigned long f_symptr; /* file pointer to symtab */
- unsigned long f_nsyms; /* number of symtab entries */
+ unsigned int f_timdat; /* time & date stamp */
+ unsigned int f_symptr; /* file pointer to symtab */
+ unsigned int f_nsyms; /* number of symtab entries */
unsigned short f_opthdr; /* sizeof(optional hdr) */
unsigned short f_flags; /* flags */
};