From 82f3446c5d09aba0aa0cffcf7ece54d44d3b86ef Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Thu, 23 Jun 2016 14:37:38 +0300 Subject: [PATCH] winemac.drv: Fix a typo in WARN() message. Signed-off-by: Andrey Gusev Signed-off-by: Ken Thomases Signed-off-by: Alexandre Julliard --- dlls/winemac.drv/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winemac.drv/opengl.c b/dlls/winemac.drv/opengl.c index a4b8e346084..e1953dd6024 100644 --- a/dlls/winemac.drv/opengl.c +++ b/dlls/winemac.drv/opengl.c @@ -4058,7 +4058,7 @@ static BOOL macdrv_wglSetPbufferAttribARB(struct wgl_pbuffer *pbuffer, const int } break; default: - WARN("invalide attribute 0x%x\n", attr); + WARN("invalid attribute 0x%x\n", attr); SetLastError(ERROR_INVALID_DATA); return GL_FALSE; }