diff options
author | Charles Crayne <chuck@thor.crayne.org> | 2007-11-05 17:19:32 -0800 |
---|---|---|
committer | Charles Crayne <chuck@thor.crayne.org> | 2007-11-05 17:19:32 -0800 |
commit | 4e8563d5c4091d9340cb9ed130642c13165bd35f (patch) | |
tree | 8441f4e4edb0af9981f4ad631c114a400819141e /output/outieee.c | |
parent | 9c98769a33c4e8e9acbdce9dde602d8fdaca0e9e (diff) | |
download | nasm-4e8563d5c4091d9340cb9ed130642c13165bd35f.tar.gz nasm-4e8563d5c4091d9340cb9ed130642c13165bd35f.tar.bz2 nasm-4e8563d5c4091d9340cb9ed130642c13165bd35f.zip |
Upgrade label functions to 64-bit
Diffstat (limited to 'output/outieee.c')
-rw-r--r-- | output/outieee.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/output/outieee.c b/output/outieee.c index 8af3cbe..bb9ce9a 100644 --- a/output/outieee.c +++ b/output/outieee.c @@ -255,7 +255,7 @@ static void ieee_cleanup(int debuginfo) * callback for labels */ static void ieee_deflabel(char *name, int32_t segment, - int32_t offset, int is_global, char *special) + int64_t offset, int is_global, char *special) { /* * We have three cases: @@ -1348,7 +1348,7 @@ static void dbgls_linnum(const char *lnfname, int32_t lineno, int32_t segto) } static void dbgls_deflabel(char *name, int32_t segment, - int32_t offset, int is_global, char *special) + int64_t offset, int is_global, char *special) { struct ieeeSection *seg; |