summaryrefslogtreecommitdiff
path: root/src/libmowgli/object/class.c
diff options
context:
space:
mode:
author <andrewsh@debian.org>2016-07-05 15:42:49 +0200
committer <andrewsh@debian.org>2016-07-05 15:42:49 +0200
commit81283c2ef8dc8b094b54e1b8ae2abf99726db9ce (patch)
treeee8ef9012692d12343c50fca9245ba567482cb49 /src/libmowgli/object/class.c
parent97988110a1e3cb58b0c958b78e8a2364b980953b (diff)
Update to the latest upstream version.
Diffstat (limited to 'src/libmowgli/object/class.c')
-rw-r--r--src/libmowgli/object/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmowgli/object/class.c b/src/libmowgli/object/class.c
index 627b59d..a7694bb 100644
--- a/src/libmowgli/object/class.c
+++ b/src/libmowgli/object/class.c
@@ -30,7 +30,7 @@ _object_key_canon(char *str)
{
while (*str)
{
- *str = toupper(*str);
+ *str = toupper((unsigned char)*str);
str++;
}
}