summaryrefslogtreecommitdiff
path: root/rdoff/symtab.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-04-30 20:58:18 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-04-30 20:58:18 +0000
commit41bf8002b2fa402bd344a290fcc9f65de328859c (patch)
treefa1638dfbf73e3a6b96ce99cda1cd5ad9c1adf61 /rdoff/symtab.h
parentef7468f4ec05f23e8d866493593d7c1f07df5e03 (diff)
downloadnasm-41bf8002b2fa402bd344a290fcc9f65de328859c.tar.gz
Diffstat (limited to 'rdoff/symtab.h')
-rw-r--r--rdoff/symtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rdoff/symtab.h b/rdoff/symtab.h
index 5780d447..c1fe0315 100644
--- a/rdoff/symtab.h
+++ b/rdoff/symtab.h
@@ -8,7 +8,7 @@
typedef struct {
char *name;
- long segment;
+ int segment;
long offset;
long flags;
} symtabEnt;
@@ -16,7 +16,7 @@ typedef struct {
void *symtabNew(void);
void symtabDone(void *symtab);
void symtabInsert(void *symtab,symtabEnt *ent);
-symtabEnt *symtabFind(void *symtab,char *name);
+symtabEnt *symtabFind(void *symtab,const char *name);
void symtabDump(void *symtab,FILE *of);