From ac163447f86f95ec6136991d7df3aaaefdd55fae Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 30 Apr 2016 04:04:18 +1000 Subject: Cleanup: warnings. spelling --- source/blender/gpu/intern/gpu_extensions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/gpu/intern') diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 7d433a78411..3c96b628cd6 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -259,8 +259,8 @@ bool GPU_legacy_support(void) if (G.debug & G_DEBUG_GPU) { printf("GL_CONTEXT_PROFILE_MASK = %#x (%s profile)\n", (unsigned int)profile, - profile & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT ? "compatibility" : - profile & GL_CONTEXT_CORE_PROFILE_BIT ? "core" : "unknown"); + (profile & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT) ? "compatibility" : + (profile & GL_CONTEXT_CORE_PROFILE_BIT) ? "core" : "unknown"); } if (profile == 0) { -- cgit v1.2.3