Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-03-27 13:33:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-03-27 13:36:49 +0300
commitfb9315ce2ad762c1bd09f38d2f62db2341469aa9 (patch)
tree497239a9f9439099c987fdcede540ede9eb3ab5a /source/blender/gpu
parente12650bdd1f7d68f4325e879fe6551163f709f2f (diff)
Cleanup: Silence some compiler warnings
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index fd660d2e97c..7d433a78411 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -258,7 +258,7 @@ bool GPU_legacy_support(void)
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
if (G.debug & G_DEBUG_GPU) {
- printf("GL_CONTEXT_PROFILE_MASK = %#x (%s profile)\n", profile,
+ 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");
}