diff options
Diffstat (limited to 'src/wctype/wctrans.c')
-rw-r--r-- | src/wctype/wctrans.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c index 54a6e211..eb51e112 100644 --- a/src/wctype/wctrans.c +++ b/src/wctype/wctrans.c @@ -9,9 +9,9 @@ wctrans_t wctrans(const char * property) ASSERT_NONNULL(property); if (!strcmp(property, "tolower")) { - return LOWER; + return CT_LOWER; } else if (!strcmp(property, "toupper")) { - return UPPER; + return CT_UPPER; } return 0; |