@@ -641,7 +641,7 @@ void Tesseract::rejection_passes(PAGE_RES* page_res,
641
641
word_char_quality (word, page_res_it.row ()->row ,
642
642
&all_char_quality, &accepted_all_char_quality);
643
643
stats_.doc_char_quality += all_char_quality;
644
- uinT8 permuter_type = word->best_choice ->permuter ();
644
+ uint8_t permuter_type = word->best_choice ->permuter ();
645
645
if ((permuter_type == SYSTEM_DAWG_PERM) ||
646
646
(permuter_type == FREQ_DAWG_PERM) ||
647
647
(permuter_type == USER_DAWG_PERM)) {
@@ -1881,7 +1881,7 @@ BOOL8 Tesseract::check_debug_pt(WERD_RES *word, int location) {
1881
1881
static void find_modal_font ( // good chars in word
1882
1882
STATS *fonts, // font stats
1883
1883
inT16 *font_out, // output font
1884
- inT8 *font_count // output count
1884
+ int8_t *font_count // output count
1885
1885
) {
1886
1886
inT16 font; // font index
1887
1887
inT32 count; // pile couat
@@ -1999,7 +1999,7 @@ void Tesseract::font_recognition_pass(PAGE_RES* page_res) {
1999
1999
}
2000
2000
}
2001
2001
inT16 doc_font; // modal font
2002
- inT8 doc_font_count; // modal font
2002
+ int8_t doc_font_count; // modal font
2003
2003
find_modal_font (&doc_fonts, &doc_font, &doc_font_count);
2004
2004
if (doc_font_count == 0 )
2005
2005
return ;
0 commit comments