diff options
author | Kenneth Graunke <[email protected]> | 2012-11-07 18:54:40 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-11-08 22:53:39 -0800 |
commit | 6ccfa1c5430542509c1946c72a7109fe53bbbcbf (patch) | |
tree | 6bef467f5b5651e719d83ffea197a4c45ec85e39 /src/mesa/main/queryobj.c | |
parent | 2aa783318dd40d9ba82b541c1af144f3103b0888 (diff) |
mesa: Fix typo in glDeleteQueriesARB debug message.
"Deleete" all the extra letters!
Diffstat (limited to 'src/mesa/main/queryobj.c')
-rw-r--r-- | src/mesa/main/queryobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index 8c5e1b82249..a22425ab0bd 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -216,7 +216,7 @@ _mesa_DeleteQueriesARB(GLsizei n, const GLuint *ids) FLUSH_VERTICES(ctx, 0); if (MESA_VERBOSE & VERBOSE_API) - _mesa_debug(ctx, "glDeleeteQueries(%d)\n", n); + _mesa_debug(ctx, "glDeleteQueries(%d)\n", n); if (n < 0) { _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteQueriesARB(n < 0)"); |