From aa971f7d584aa3964fb5a5b628f27985f05fe78c Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 7 Jul 2013 20:54:46 +0100 Subject: ul: use correct types Signed-off-by: Sami Kerola --- text-utils/ul.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'text-utils/ul.c') diff --git a/text-utils/ul.c b/text-utils/ul.c index 7b50ede50..26d2b172d 100644 --- a/text-utils/ul.c +++ b/text-utils/ul.c @@ -463,11 +463,11 @@ static void iattr(void) { register int i; #ifdef __GNUC__ - register char *lbuf = __builtin_alloca((maxcol+1)*sizeof(char)); + register wchar_t *lbuf = __builtin_alloca((maxcol+1)*sizeof(wchar_t)); #else - char lbuf[BUFSIZ]; + wchar_t lbuf[BUFSIZ]; #endif - register char *cp = lbuf; + register wchar_t *cp = lbuf; for (i = 0; i < maxcol; i++) switch (obuf[i].c_mode) { -- cgit v1.2.3-55-g7522