projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51e6c57
)
mesa: remove unused var
author
Brian Paul
<brianp@vmware.com>
Mon, 5 Apr 2010 14:09:57 +0000
(08:09 -0600)
committer
Brian Paul
<brianp@vmware.com>
Mon, 5 Apr 2010 14:10:01 +0000
(08:10 -0600)
Fixes a coverity warnings.
src/mesa/main/dlist.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/dlist.c
b/src/mesa/main/dlist.c
index cc5fc130dfe9f3ff0b95ec92777e1f03b95dfedd..f869a585d6bc979ebcf532240611270dcb7e6666 100644
(file)
--- a/
src/mesa/main/dlist.c
+++ b/
src/mesa/main/dlist.c
@@
-6130,9
+6130,8
@@
static void GLAPIENTRY
save_EndTransformFeedback(void)
{
GET_CURRENT_CONTEXT(ctx);
- Node *n;
ASSERT_OUTSIDE_SAVE_BEGIN_END_AND_FLUSH(ctx);
-
n =
alloc_instruction(ctx, OPCODE_END_TRANSFORM_FEEDBACK, 0);
+
(void)
alloc_instruction(ctx, OPCODE_END_TRANSFORM_FEEDBACK, 0);
if (ctx->ExecuteFlag) {
CALL_EndTransformFeedbackEXT(ctx->Exec, ());
}