mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 16:20:42 +00:00
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:
parent
78809d0762
commit
b0f76a10ef
1 changed files with 5 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue