diff options
author | Chris Robinson <[email protected]> | 2007-12-06 22:12:29 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-06 22:12:29 -0800 |
commit | 3e92e6c4f0d265809f6a4145306a9ad881dbb2aa (patch) | |
tree | 359339606d59f55af60b1f500014bf1d2e7c4735 /OpenAL32/alExtension.c | |
parent | 2ecb878e68c9bc5511bf6bb422e28baec6a75ea0 (diff) |
Add some casts
Diffstat (limited to 'OpenAL32/alExtension.c')
-rw-r--r-- | OpenAL32/alExtension.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index 1d0928d2..269590e9 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -223,7 +223,7 @@ ALAPI ALboolean ALAPIENTRY alIsExtensionPresent(const ALchar *extName) ext = strdup(extName); ptr = ext; do { - *ptr = toupper(*ptr); + *ptr = (char)toupper(*ptr); } while(*(ptr++)); SuspendContext(pContext); |