Skip to content

Commit

Permalink
Return nil instead of a NO to fix error on latest Xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago Lopes committed Mar 21, 2014
1 parent d2ad2eb commit bb9d669
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 bb9d669

Please sign in to comment.