mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Fix a few compiler warnings caused by type mismatches in NSLog statements.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35037 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b8f0b08cae
commit
85bb57fd18
3 changed files with 4 additions and 4 deletions
|
@ -2549,8 +2549,8 @@ static NSLock *cached_proxies_gate = nil;
|
||||||
|
|
||||||
if (debug_connection > 1)
|
if (debug_connection > 1)
|
||||||
NSLog(
|
NSLog(
|
||||||
@"Handling message (sig %s) RMC %d from %@",
|
@"Handling message (sig %s) RMC %d from %p",
|
||||||
forward_type, seq, (uintptr_t)self);
|
forward_type, seq, self);
|
||||||
|
|
||||||
IreqInCount++; /* Handling an incoming request. */
|
IreqInCount++; /* Handling an incoming request. */
|
||||||
|
|
||||||
|
|
|
@ -1932,7 +1932,7 @@ failure:
|
||||||
if (b == 0)
|
if (b == 0)
|
||||||
{
|
{
|
||||||
NSLog(@"[NSDataMalloc -initWithCoder:] unable to get %u bytes",
|
NSLog(@"[NSDataMalloc -initWithCoder:] unable to get %u bytes",
|
||||||
l);
|
(unsigned int)l);
|
||||||
DESTROY(self);
|
DESTROY(self);
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
|
@ -573,7 +573,7 @@ replacementForClass(Class c)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
NSLog(@"Failed to add setter method for %s to %@",
|
NSLog(@"Failed to add setter method for %s to %s",
|
||||||
sel_getName(sel), class_getName(original));
|
sel_getName(sel), class_getName(original));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue