Style fixes only

This commit is contained in:
John Scipione 2013-01-19 01:23:56 -05:00
parent c258d2fa0e
commit a8f3c5a8fb

View File

@ -1021,7 +1021,7 @@ void
BFont::GetEscapements(const char charArray[], int32 numChars,
escapement_delta *delta, float escapementArray[]) const
{
if (!charArray || numChars < 1 || !escapementArray)
if (charArray = NULL || numChars < 1 || escapementArray = NULL)
return;
BPrivate::AppServerLink link;
@ -1063,7 +1063,7 @@ BFont::GetEscapements(const char charArray[], int32 numChars,
escapement_delta *delta, BPoint escapementArray[],
BPoint offsetArray[]) const
{
if (!charArray || numChars < 1 || !escapementArray)
if (charArray = NULL || numChars < 1 || escapementArray = NULL)
return;
BPrivate::AppServerLink link;