mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-19 18:00:23 +08:00
Actually shut up the warning in rdfload.c
Shut the warning in rdfload.c up properly...
This commit is contained in:
parent
cb583b9435
commit
ff9e7e34a1
@ -104,9 +104,9 @@ rdfmodule *rdfload(const char *filename)
|
||||
|
||||
rdfheaderrewind(&f->f);
|
||||
|
||||
f->textrel = (size_t)(uint32_t)f->t;
|
||||
f->datarel = (size_t)(uint32_t)f->d;
|
||||
f->bssrel = (size_t)(int32_t)f->b;
|
||||
f->textrel = (int32_t)(size_t)f->t;
|
||||
f->datarel = (int32_t)(size_t)f->d;
|
||||
f->bssrel = (int32_t)(size_t)f->b;
|
||||
|
||||
return f;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user