In other case we will get: error: expected ‘;’ before ‘}’ token error. Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> --- 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 421823d..c315f91 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.9.4 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html