Skip to content

Commit

Permalink
Add missing ')'_to make the code compile
Browse files Browse the repository at this point in the history
  • Loading branch information
amitdo committed Dec 11, 2015
1 parent c2f5e9b commit a20156f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/tesseractmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ void PreloadRenderers(tesseract::TessBaseAPI* api,
(api->GetBoolVariable("tessedit_make_boxes_from_boxes", &b) && b);

api->GetBoolVariable("tessedit_create_txt", &b);
if (b || (renderers->empty() && !disable_text_renderer) {
if (b || (renderers->empty() && !disable_text_renderer)) {
renderers->push_back(new tesseract::TessTextRenderer(outputbase));
}
}
Expand Down

0 comments on commit a20156f

Please sign in to comment.