From 8bc5195be9e5f5d26d8d3c4f71681387b13da3d8 Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Tue, 30 May 2017 00:49:17 +0600 Subject: [PATCH] column: add missed semicolons in case of !HAVE_WIDECHAR MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In other case we will get: error: expected ‘;’ before ‘}’ token error. Signed-off-by: Alexander Kuleshov --- text-utils/column.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text-utils/column.c b/text-utils/column.c index 421823d4a1..c315f91ef6 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -129,7 +129,7 @@ static wchar_t *mbs_to_wcs(const char *s) } return wcs; #else - return xstrdup(s) + return xstrdup(s); #endif } @@ -150,7 +150,7 @@ static char *wcs_to_mbs(const wchar_t *s) } return str; #else - return xstrdup(s) + return xstrdup(s); #endif } -- 2.47.3