Author: rmottola
Date: Sat Apr  1 16:09:01 2017
New Revision: 40432

URL: http://svn.gna.org/viewcvs/gnustep?rev=40432&view=rev
Log:
Correct format specifier to char*

Modified:
    libs/base/trunk/ChangeLog
    libs/base/trunk/Source/NSConnection.m

Modified: libs/base/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/ChangeLog?rev=40432&r1=40431&r2=40432&view=diff
==============================================================================
--- libs/base/trunk/ChangeLog   (original)
+++ libs/base/trunk/ChangeLog   Sat Apr  1 16:09:01 2017
@@ -1,3 +1,8 @@
+2017-04-01 Riccardo Mottola <r...@gnu.org>
+
+       * Source/NSConnection.m
+       Correct format specifier to char*
+
 2017-03-17 Riccardo Mottola <r...@gnu.org>
 
        * Source/NSFileManager.m:(nextObject of Enumerator)

Modified: libs/base/trunk/Source/NSConnection.m
URL: 
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/NSConnection.m?rev=40432&r1=40431&r2=40432&view=diff
==============================================================================
--- libs/base/trunk/Source/NSConnection.m       (original)
+++ libs/base/trunk/Source/NSConnection.m       Sat Apr  1 16:09:01 2017
@@ -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 <mccal...@gnu.ai.mit.edu>
    Date: July 1994
@@ -2049,7 +2049,7 @@
          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);


_______________________________________________
Gnustep-cvs mailing list
Gnustep-cvs@gna.org
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to