diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-04-03 02:15:55 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-04-03 02:15:55 +0000 |
commit | f6ca2b3ea92b7fe98408c51a17a590435e808b1d (patch) | |
tree | 2afe1cf7d324dacb96ce575050a2e568f5092d3a /hw/dmx | |
parent | 9b9dd747d8f4697c6d5c947c160d5991c7c8fde5 (diff) |
Coverity #38: Dead branch elimination.
Diffstat (limited to 'hw/dmx')
-rw-r--r-- | hw/dmx/glxProxy/glxcmds.c | 2 |
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; |