X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=xsv.c;h=0d2d972b055544ddab45ad06132ed09ea4e2b8c6;hb=6855999fb9dfb43e2da829c4d85ef532174a1405;hp=b815c7205a774d09d88335496bde4bc7b38c584a;hpb=7822030091c7c27bb59291eb3519dc56f45bad22;p=xsv.git diff --git a/xsv.c b/xsv.c index b815c72..0d2d972 100644 --- a/xsv.c +++ b/xsv.c @@ -450,7 +450,7 @@ static void table_write(struct format *fmt) cw = fw; } while (len--) - putchar(*p++); + putchar_unlocked(*p++); } while (fw < cw) { putchar_unlocked(' '); @@ -475,7 +475,7 @@ static void table_write_grid(struct format *fmt, int pos UNUSED) putchar_unlocked('+'); int w = fmt->table_sep + *intarray_nth(&column_widths, i); while (w--) - putchar('-'); + putchar_unlocked('-'); } putchar_unlocked('+'); putchar_unlocked('\n');