X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=symbol.c;h=c24720f235937134e396ef9cc94f139d5c1c10ee;hp=80d2b3b52e13048f91f8c6f28cf579629659d95a;hb=0951a3e28907fbaf89a10c5201b71d8080ffe5a8;hpb=582df8950c285e1746d0c4a9e3ead6545c962dc8 diff --git a/symbol.c b/symbol.c index 80d2b3b..c24720f 100644 --- a/symbol.c +++ b/symbol.c @@ -309,7 +309,6 @@ uint32_t sy_assign_ELF(uint8_t * buf, uint8_t *(* construct)()) // and export all global-referenced labels. Not sure if this is // required but it's here nonetheless - //for(sy=sdecl; sy!=NULL; sy=sy->sorder) for(SYM * sy=sdecl; sy!=NULL; sy=sy->sdecl) { if ((sy->stype == LABEL) @@ -482,7 +481,7 @@ int symtable(void) strcpy(ln2, "external"); else { - sprintf(ln2, "%08X", q->svalue); + sprintf(ln2, "%016lX", q->svalue); ToUppercase(ln2); }