File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -682,8 +682,8 @@ void FPRow::DebugOutputResult(int row_index) {
682
682
real_row_->space_size , real_row_->space_threshold ,
683
683
real_row_->xheight );
684
684
685
- for (size_t i = 0 ; i < num_chars (); i++) {
686
- tprintf (" Char %d : is_final=%d is_good=%d num_blobs=%d: " ,
685
+ for (unsigned i = 0 ; i < num_chars (); i++) {
686
+ tprintf (" Char %u : is_final=%d is_good=%d num_blobs=%d: " ,
687
687
i, is_final (i), is_good (i), character (i)->num_blobs ());
688
688
box (i).print ();
689
689
}
@@ -1078,7 +1078,7 @@ void compute_fixed_pitch_cjk(ICOORD page_tr,
1078
1078
return ;
1079
1079
}
1080
1080
1081
- size_t iteration = 0 ;
1081
+ unsigned iteration = 0 ;
1082
1082
do {
1083
1083
analyzer.MergeFragments ();
1084
1084
analyzer.FinalizeLargeChars ();
@@ -1087,7 +1087,7 @@ void compute_fixed_pitch_cjk(ICOORD page_tr,
1087
1087
} while (analyzer.Pass2Analyze () && iteration < analyzer.max_iteration ());
1088
1088
1089
1089
if (textord_debug_pitch_test) {
1090
- tprintf (" compute_fixed_pitch_cjk finished after %d iteration (limit=%d )\n " ,
1090
+ tprintf (" compute_fixed_pitch_cjk finished after %u iteration (limit=%u )\n " ,
1091
1091
iteration, analyzer.max_iteration ());
1092
1092
}
1093
1093
You can’t perform that action at this time.
0 commit comments