Format consistency fixe

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9313 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2001-03-08 05:26:32 +00:00
parent 78809d0762
commit b0f76a10ef

View file

@ -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)
{