mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Fix various incorrect format string types
This commit is contained in:
parent
87dc8ab70c
commit
27c06a9209
14 changed files with 102 additions and 96 deletions
|
@ -1265,12 +1265,12 @@ GSPrivateReturnAddresses(NSUInteger **returns)
|
|||
if ((fromSym)(hProcess, (DWORD64)addr, 0, symbol))
|
||||
{
|
||||
syms[i] = [NSString stringWithFormat:
|
||||
@"%s - %p", symbol->Name, addr];
|
||||
@"%s - %lx", symbol->Name, (unsigned long)addr];
|
||||
}
|
||||
else
|
||||
{
|
||||
syms[i] = [NSString stringWithFormat:
|
||||
@"unknown - %p", addr];
|
||||
@"unknown - %lx", (unsigned long)addr];
|
||||
}
|
||||
}
|
||||
GS_MUTEX_UNLOCK(traceLock);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue