aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);