Correct format specifier to char*

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@40432 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rmottola 2017-04-01 14:09:01 +00:00
parent 08d08634c8
commit 19a434ef81
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2017-04-01 Riccardo Mottola <rm@gnu.org>
* Source/NSConnection.m
Correct format specifier to char*
2017-03-17 Riccardo Mottola <rm@gnu.org>
* Source/NSFileManager.m:(nextObject of Enumerator)

View file

@ -1,5 +1,5 @@
/** Implementation of connection object for remote object messaging
Copyright (C) 1994-2013 Free Software Foundation, Inc.
Copyright (C) 1994-2017 Free Software Foundation, Inc.
Created by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
Date: July 1994
@ -2049,7 +2049,7 @@ static NSLock *cached_proxies_gate = nil;
if (is_exception == YES)
NSLog(@"Got exception with %s", name);
else
NSLog(@"Got response with %@", name);
NSLog(@"Got response with %s", name);
[self _doneInRmc: node->value.obj];
}
GSIMapRemoveKey(IreplyMap, (GSIMapKey)(NSUInteger)seq);