aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alExtension.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-20 22:37:36 -0700
committerChris Robinson <[email protected]>2012-04-20 22:37:36 -0700
commitd6af7cdcb2f31d4de0ac239c1c5b47a38a48b138 (patch)
treeca21e5c2f2a0249077f5f54692f91815ff77af46 /OpenAL32/alExtension.c
parent0ad8047820ecd783f3be2de78b2537d6332c9566 (diff)
Rename another variable to avoid hungarian notation
Diffstat (limited to 'OpenAL32/alExtension.c')
-rw-r--r--OpenAL32/alExtension.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c
index 11941d29..4d6e2644 100644
--- a/OpenAL32/alExtension.c
+++ b/OpenAL32/alExtension.c
@@ -48,7 +48,7 @@ const struct EffectList EffectList[] = {
AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName)
{
- ALboolean bIsSupported = AL_FALSE;
+ ALboolean ret = AL_FALSE;
ALCcontext *Context;
const char *ptr;
size_t len;
@@ -67,7 +67,7 @@ AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName)
if(strncasecmp(ptr, extName, len) == 0 &&
(ptr[len] == '\0' || isspace(ptr[len])))
{
- bIsSupported = AL_TRUE;
+ ret = AL_TRUE;
break;
}
if((ptr=strchr(ptr, ' ')) != NULL)
@@ -80,7 +80,7 @@ AL_API ALboolean AL_APIENTRY alIsExtensionPresent(const ALchar *extName)
}
ALCcontext_DecRef(Context);
- return bIsSupported;
+ return ret;
}