diff options
author | Ian Romanick <[email protected]> | 2014-07-16 10:52:32 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-07-23 16:42:47 -0700 |
commit | 5072d0e7fc6120fe7d1a02f0d4ba3daed4a03573 (patch) | |
tree | a270742621b0c2de8ef7aa7ac420b450117e15cc | |
parent | 3f04a1532e972484da8937440509b2d185c642ec (diff) |
mesa: Fix the name in the error message
Obvious copy-and-paste bug.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/mesa/main/uniform_query.cpp | 2 |
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; } |