Skip to content

Commit

Permalink
Merge pull request ldiqual#20 from topes/master
Browse files Browse the repository at this point in the history
Return nil instead of NO to fix error on latest Xcode
  • Loading branch information
ldiqual committed Mar 21, 2014
2 parents d2ad2eb + bb9d669 commit 19cafe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Tesseract.mm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ - (id)initWithDataPath:(NSString *)dataPath

BOOL success = [self initEngine];
if (!success) {
return NO;
return nil;
}
}
return self;
Expand Down

0 comments on commit 19cafe1

Please sign in to comment.