fix warning

This commit is contained in:
Alexander S. Aganichev 2002-06-10 06:23:04 +00:00
parent 2da452a14f
commit 077d4b55f5

View File

@ -231,7 +231,7 @@ void throw_printdl(Throw* dl) {
char buf[100];
char* ptr = (char*)throw_dltoptr(dl);
TLOG->printf(": Ptr (%p,%u) at [%s,%u].", ptr, dl->nbytes, CleanFilename(dl->file), (uint)dl->line);
TLOG->printf(": Ptr (%p,%u) at [%s,%u].", ptr, (uint)dl->nbytes, CleanFilename(dl->file), (uint)dl->line);
TLOG->printf(": %s", HexDump16(buf, ptr, dl->nbytes, HEX_DUMP2));
}