summaryrefslogtreecommitdiffstats
path: root/text-utils/column.c
diff options
context:
space:
mode:
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
}