From b0f76a10efddb98067e6bb7c12c85d9c0fc482fe Mon Sep 17 00:00:00 2001 From: Richard Frith-Macdonald Date: Thu, 8 Mar 2001 05:26:32 +0000 Subject: [PATCH] Format consistency fixe git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9313 72102866-910b-0410-8b05-ffd578937521 --- Source/NSString.m | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/NSString.m b/Source/NSString.m index e54e2ae67..e780db9f6 100644 --- a/Source/NSString.m +++ b/Source/NSString.m @@ -606,12 +606,15 @@ handle_printf_atsign (FILE *stream, - (id) initWithUTF8String: (const char *)bytes { unsigned length = 0; - if (bytes==NULL) + + if (bytes == NULL) { NSDebugMLog(@"bytes is NULL"); } else - length=strlen(bytes); + { + length = strlen(bytes); + } if (length > 0) {