diff options
Diffstat (limited to 'cutils.c')
-rw-r--r-- | cutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ int stristart(const char *str, const char *val, const char **ptr) p = str; q = val; while (*q != '\0') { - if (toupper(*p) != toupper(*q)) + if (qemu_toupper(*p) != qemu_toupper(*q)) return 0; p++; q++; |