Changeset 1100
- Timestamp:
- Jan 29, 2004, 5:19:08 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/weakld.c
-
Property cvs2svn:cvs-rev
changed from
1.24
to1.25
r1099 r1100 670 670 /* position us */ 671 671 if (fseek(phFile, pLib->LibHdr.offDict, SEEK_SET)) 672 return libErr(pLib, "Failed to seek to extended dictionary (offset %d).", pLib->LibHdr.offDict);672 return libErr(pLib, "Failed to seek to extended dictionary (offset %d).", (int)pLib->LibHdr.offDict); 673 673 674 674 /* read it */ … … 956 956 if (rc) 957 957 { 958 libErr(pLib, "Failed when reading module at offset %x.", offCurMod);958 libErr(pLib, "Failed when reading module at offset %x.", (int)offCurMod); 959 959 return rc; 960 960 } … … 1100 1100 if (fseek(pMod->phFile, pMod->off, SEEK_SET)) 1101 1101 { 1102 modErr(pMod, "failed to seek to module start (%#x).", pMod->off);1102 modErr(pMod, "failed to seek to module start (%#x).", (int)pMod->off); 1103 1103 modClose(pMod); 1104 1104 return NULL; … … 2210 2210 if (fread(&OmfRec, sizeof(OmfRec), 1, phFile) != 1) 2211 2211 { 2212 modErr(pMod, "read error. (offset ~= %#x).", ftell(phFile));2212 modErr(pMod, "read error. (offset ~= %#x).", (int)ftell(phFile)); 2213 2213 goto failure; 2214 2214 } … … 2218 2218 if (OmfRec.chType != THEADR) 2219 2219 { 2220 modErr(pMod, "invalid object module (offset %#x).", pMod->off);2220 modErr(pMod, "invalid object module (offset %#x).", (int)pMod->off); 2221 2221 goto failure; 2222 2222 } … … 2261 2261 /* Put out some /INFO stuff similar to ilink. */ 2262 2262 if (pMod->pLib) 2263 WLDINFO(pWld, ("Reading @0x%08x %s(%s)", pMod->off, pMod->pLib->pszLibName, pMod->pszModName));2263 WLDINFO(pWld, ("Reading @0x%08x %s(%s)", (int)pMod->off, pMod->pLib->pszLibName, pMod->pszModName)); 2264 2264 else 2265 WLDINFO(pWld, ("Reading @0x%08x %s", pMod->off, pMod->pszModName));2265 WLDINFO(pWld, ("Reading @0x%08x %s", (int)pMod->off, pMod->pszModName)); 2266 2266 break; 2267 2267 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.