support cputime clocks for processes/threads other than self
[oweals/musl.git] / src / ctype / wctrans.c
index 03e9fd6ab6b291b197ff0a2faaba5434007e7511..739869d059e4aec9b2f805cdc95d5c703dd711ca 100644 (file)
@@ -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;
 }