Skip to content

Commit

Permalink
Style fixes only
Browse files Browse the repository at this point in the history
  • Loading branch information
jscipione committed Jan 19, 2013
1 parent c258d2f commit a8f3c5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kits/interface/Font.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit a8f3c5a

Please sign in to comment.