summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-04-03 02:15:47 +0000
committerAdam Jackson <ajax@nwnk.net>2006-04-03 02:15:47 +0000
commit109eeb2bfcd96bb88e90ce3e3be44407d1929d41 (patch)
treeb0b19b7c097ccbfd1fc08e7f1e1612ac925f9fc3 /hw
parentbb883133ef22b38a8fd4194d217aa0f612635651 (diff)
Coverity #38: Dead branch elimination.
Diffstat (limited to 'hw')
-rw-r--r--hw/dmx/glxProxy/glxcmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/glxProxy/glxcmds.c b/hw/dmx/glxProxy/glxcmds.c
index 8c466e13c..fe1d3571f 100644
--- a/hw/dmx/glxProxy/glxcmds.c
+++ b/hw/dmx/glxProxy/glxcmds.c
@@ -3619,7 +3619,7 @@ int __glXSendLargeCommand(__GLXclientState *cl, GLXContextTag contextTag)
GetReq(GLXRenderLarge,req);
req->reqType = dmxScreen->glxMajorOpcode;
req->glxCode = X_GLXRenderLarge;
- req->contextTag = (glxc ? GetCurrentBackEndTag(cl,contextTag,s) : 0);
+ req->contextTag = GetCurrentBackEndTag(cl,contextTag,s);
req->length += (amount + 3) >> 2;
req->requestNumber = requestNumber++;
req->requestTotal = totalRequests;