From d3e7a26db6c51410147eeeee8113cd7eac5d9668 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 20 Sep 2011 11:58:26 -0700 Subject: [PATCH] Fix a warning message --- Alc/ALc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);