Woops, I meant == not =

This commit is contained in:
John Scipione 2013-01-19 01:31:24 -05:00
parent a8f3c5a8fb
commit 9c840df052
1 changed files with 2 additions and 2 deletions

View File

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