]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
column: add missed semicolons in case of !HAVE_WIDECHAR
authorAlexander Kuleshov <kuleshovmail@gmail.com>
Mon, 29 May 2017 18:49:17 +0000 (00:49 +0600)
committerKarel Zak <kzak@redhat.com>
Thu, 1 Jun 2017 08:56:08 +0000 (10:56 +0200)
In other case we will get:

  error: expected ‘;’ before ‘}’ token

error.

Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com>
text-utils/column.c

index 421823d4a1d71eebc993b8be425580f5ccd8d963..c315f91ef62e03680f3dfae0528f9c53fe00be7e 100644 (file)
@@ -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
 }