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 /nasmlib.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 'nasmlib.c')
-rw-r--r-- | nasmlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -896,7 +896,7 @@ void null_debug_linenum(const char *filename, int32_t linenumber, int32_t segto) (void)linenumber; (void)segto; } -void null_debug_deflabel(char *name, int32_t segment, int32_t offset, +void null_debug_deflabel(char *name, int32_t segment, int64_t offset, int is_global, char *special) { (void)name; |