mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 00:30:49 +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
|
- (id) initWithUTF8String: (const char *)bytes
|
||||||
{
|
{
|
||||||
unsigned length = 0;
|
unsigned length = 0;
|
||||||
if (bytes==NULL)
|
|
||||||
|
if (bytes == NULL)
|
||||||
{
|
{
|
||||||
NSDebugMLog(@"bytes is NULL");
|
NSDebugMLog(@"bytes is NULL");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
length=strlen(bytes);
|
{
|
||||||
|
length = strlen(bytes);
|
||||||
|
}
|
||||||
|
|
||||||
if (length > 0)
|
if (length > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue