summaryrefslogtreecommitdiffstats
path: root/text-utils/column.c
diff options
context:
space:
mode:
authorAlexander Kuleshov2017-05-29 20:49:17 +0200
committerKarel Zak2017-06-01 10:56:08 +0200
commit8bc5195be9e5f5d26d8d3c4f71681387b13da3d8 (patch)
treef028b4c97819e04c3b3ef9e815ad027617c7a9fd /text-utils/column.c
parentMerge branch 'travis-test' of https://github.com/rudimeier/util-linux (diff)
downloadkernel-qcow2-util-linux-8bc5195be9e5f5d26d8d3c4f71681387b13da3d8.tar.gz
kernel-qcow2-util-linux-8bc5195be9e5f5d26d8d3c4f71681387b13da3d8.tar.xz
kernel-qcow2-util-linux-8bc5195be9e5f5d26d8d3c4f71681387b13da3d8.zip
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 <kuleshovmail@gmail.com>
Diffstat (limited to 'text-utils/column.c')
-rw-r--r--text-utils/column.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text-utils/column.c b/text-utils/column.c
index 421823d4a..c315f91ef 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
}