aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-20 11:58:26 -0700
committerChris Robinson <[email protected]>2011-09-20 11:58:26 -0700
commitd3e7a26db6c51410147eeeee8113cd7eac5d9668 (patch)
tree43a19e874b36200257b1f2048687be73623a8575 /Alc/ALc.c
parent8c2a2a5c9da7793c71d94770b4bee40b4f123ccf (diff)
Fix a warning message
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 63104e11..ff7df305 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -2526,7 +2526,7 @@ ALC_API ALCboolean ALC_APIENTRY alcCloseDevice(ALCdevice *pDevice)
if((ctx=pDevice->ContextList) != NULL)
{
do {
- WARN("Destroying context %p\n", ctx);
+ WARN("Releasing context %p\n", ctx);
ReleaseContext(ctx, pDevice);
} while((ctx=pDevice->ContextList) != NULL);
ALCdevice_StopPlayback(pDevice);