From 7f6f586bbd6146367d480a7b16a68ecdab422657 Mon Sep 17 00:00:00 2001 From: David Ayers Date: Sun, 6 Jun 2004 20:28:57 +0000 Subject: [PATCH] (BDBGPrintf): Add space before last comma in macro older compilers. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19474 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 2 ++ Source/Additions/GSObjCRuntime.m | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ff0578631..4f3672295 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ (GSGetClassMethodNotInherited): Fix typo. (GSObjCAddClassBehavior): Add call to GSFlushMethodCacheForClass after adding behavior. + (BDBGPrintf): Add space before last comma in macro older + compilers. 2004-06-05 David Ayers diff --git a/Source/Additions/GSObjCRuntime.m b/Source/Additions/GSObjCRuntime.m index 44ab31c62..e8dc7c3cd 100644 --- a/Source/Additions/GSObjCRuntime.m +++ b/Source/Additions/GSObjCRuntime.m @@ -63,7 +63,7 @@ #endif #define BDBGPrintf(format, args...) \ - do { if (behavior_debug) { fprintf(stderr, (format), ## args); } } while (0) + do { if (behavior_debug) { fprintf(stderr, (format) , ## args); } } while (0) static objc_mutex_t local_lock = NULL;