From b21be4364c6b246bb13f0e448d7969be8651e248 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 28 Oct 2012 14:13:50 +0100 Subject: [PATCH] Convert a couple of remaining putchar's to unlocked --- xsv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'); -- 2.39.2