about summary refs log tree commit diff
path: root/src/ctype
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype')
-rw-r--r--src/ctype/wctrans.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ctype/wctrans.c b/src/ctype/wctrans.c
index 03e9fd6a..739869d0 100644
--- a/src/ctype/wctrans.c
+++ b/src/ctype/wctrans.c
@@ -3,14 +3,14 @@
 
 wctrans_t wctrans(const char *class)
 {
-	if (!strcmp(class, "toupper")) return 1;
-	if (!strcmp(class, "tolower")) return 2;
+	if (!strcmp(class, "toupper")) return (wctrans_t)1;
+	if (!strcmp(class, "tolower")) return (wctrans_t)2;
 	return 0;
 }
 
 wint_t towctrans(wint_t wc, wctrans_t trans)
 {
-	if (trans == 1) return towupper(wc);
-	if (trans == 2) return towlower(wc);
+	if (trans == (wctrans_t)1) return towupper(wc);
+	if (trans == (wctrans_t)2) return towlower(wc);
 	return wc;
 }