summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2014-07-16 10:52:32 -0700
committerIan Romanick <ian.d.romanick@intel.com>2014-07-23 16:42:47 -0700
commit5072d0e7fc6120fe7d1a02f0d4ba3daed4a03573 (patch)
treea270742621b0c2de8ef7aa7ac420b450117e15cc
parent3f04a1532e972484da8937440509b2d185c642ec (diff)
mesa: Fix the name in the error message
Obvious copy-and-paste bug. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--src/mesa/main/uniform_query.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/uniform_query.cpp b/src/mesa/main/uniform_query.cpp
index 480bc6f163f..609d94bd745 100644
--- a/src/mesa/main/uniform_query.cpp
+++ b/src/mesa/main/uniform_query.cpp
@@ -91,7 +91,7 @@ _mesa_GetActiveUniformsiv(GLuint program,
if (uniformCount < 0) {
_mesa_error(ctx, GL_INVALID_VALUE,
- "glGetUniformIndices(uniformCount < 0)");
+ "glGetActiveUniformsiv(uniformCount < 0)");
return;
}