From 5072d0e7fc6120fe7d1a02f0d4ba3daed4a03573 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 16 Jul 2014 10:52:32 -0700 Subject: [PATCH] mesa: Fix the name in the error message Obvious copy-and-paste bug. Signed-off-by: Ian Romanick Reviewed-by: Matt Turner --- src/mesa/main/uniform_query.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2