From: Ian Romanick Date: Wed, 16 Jul 2014 17:52:32 +0000 (-0700) Subject: mesa: Fix the name in the error message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5072d0e7fc6120fe7d1a02f0d4ba3daed4a03573;p=mesa.git mesa: Fix the name in the error message Obvious copy-and-paste bug. Signed-off-by: Ian Romanick Reviewed-by: Matt Turner --- 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; }