From: Martin Mares Date: Sun, 28 Oct 2012 13:13:50 +0000 (+0100) Subject: Convert a couple of remaining putchar's to unlocked X-Git-Tag: v1.0.1~3 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=b21be4364c6b246bb13f0e448d7969be8651e248;p=xsv.git Convert a couple of remaining putchar's to unlocked --- 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');