diff options
| -rw-r--r-- | bk_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -497,7 +497,7 @@ static void text_output_many(textfile *tf, int n, wchar_t c) wchar_t s[2]; s[0] = c; s[1] = L'\0'; - while (n--) + while (n-- > 0) text_output(tf, s); } |