From 9a22dc13512632d398c308642ccafdecc86756fc Mon Sep 17 00:00:00 2001 From: janwas Date: Mon, 21 Mar 2011 11:55:49 +0000 Subject: [PATCH] warning fixes This was SVN commit r9088. --- source/lib/glext_funcs.h | 2 +- source/lib/sysdep/arch/x86_x64/cache.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/glext_funcs.h b/source/lib/glext_funcs.h index a24a3c81e9..30097bdfb0 100644 --- a/source/lib/glext_funcs.h +++ b/source/lib/glext_funcs.h @@ -70,7 +70,7 @@ FUNC2(void, glActiveTextureARB, glActiveTexture, "1.3", (int)) FUNC2(void, glClientActiveTextureARB, glClientActiveTexture, "1.3", (int)) // GL_EXT_blend_color / GL1.4 (optional in 1.2): -FUNC2(void, glBlendColorEXT, glBlendColor, "1.4", (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)); +FUNC2(void, glBlendColorEXT, glBlendColor, "1.4", (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)) // GL_ARB_vertex_buffer_object / GL1.5: FUNC2(void, glBindBufferARB, glBindBuffer, "1.5", (int target, GLuint buffer)) diff --git a/source/lib/sysdep/arch/x86_x64/cache.cpp b/source/lib/sysdep/arch/x86_x64/cache.cpp index ce2d56b39a..ec25134554 100644 --- a/source/lib/sysdep/arch/x86_x64/cache.cpp +++ b/source/lib/sysdep/arch/x86_x64/cache.cpp @@ -537,7 +537,7 @@ enum DescriptorFlags SKIP_CACHE_DESCRIPTORS = 1, NO_LAST_LEVEL_CACHE = 2, PREFETCH64 = 64, - PREFETCH128 = 128, + PREFETCH128 = 128 }; static bool HandleSpecialDescriptor(Descriptor descriptor, size_t& descriptorFlags)