Skip to content

Commit 3ed36ff

Browse files
committed
Fix format string for float value
repetition_spacing is a float value. Use %5.2 as that is used for similar float values in the same file. Signed-off-by: Stefan Weil <[email protected]>
1 parent a95edd7 commit 3ed36ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

textord/tospace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ ROW *Textord::make_prop_words(
11311131
blanks = 0;
11321132
if (tosp_debug_level > 5)
11331133
tprintf
1134-
("Repch wd at EOL (%d,%d). rep spacing %d; Lgap:%d (%d blanks)\n",
1134+
("Repch wd at EOL (%d,%d). rep spacing %5.2f; Lgap:%d (%d blanks)\n",
11351135
word->bounding_box ().left (), word->bounding_box ().bottom (),
11361136
repetition_spacing, current_gap, blanks);
11371137
word->set_blanks (blanks);

0 commit comments

Comments
 (0)