diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/utils.c b/Src/utils.c index 2e4df845a..6041e092b 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -3055,8 +3055,8 @@ wcsitype(wchar_t c, int itype) if (len == 0) { /* NULL is special */ return zistype(0, itype); - } else if (len == 1 && isascii(*outstr)) { - return zistype(*outstr, itype); + } else if (len == 1 && isascii(outstr[0])) { + return zistype(outstr[0], itype); } else { switch (itype) { case IIDENT: |