From: Alexander Kuleshov Date: Mon, 29 May 2017 18:49:17 +0000 (+0600) Subject: column: add missed semicolons in case of !HAVE_WIDECHAR X-Git-Tag: v2.30~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8bc5195be9e5f5d26d8d3c4f71681387b13da3d8;p=thirdparty%2Futil-linux.git column: add missed semicolons in case of !HAVE_WIDECHAR In other case we will get: error: expected ‘;’ before ‘}’ token error. Signed-off-by: Alexander Kuleshov --- 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 }