winex11.drv: Declare variable signed to accept possible negative return value (Coverity).
This commit is contained in:
parent
7e13c16cbc
commit
e463110e22
|
@ -1923,7 +1923,7 @@ static HPBUFFERARB WINAPI X11DRV_wglCreatePbufferARB(HDC hdc, int iPixelFormat,
|
|||
GLXFBConfig* cfgs = NULL;
|
||||
int nCfgs = 0;
|
||||
int attribs[256];
|
||||
unsigned nAttribs = 0;
|
||||
int nAttribs = 0;
|
||||
int fmt_index = 0;
|
||||
|
||||
TRACE("(%p, %d, %d, %d, %p)\n", hdc, iPixelFormat, iWidth, iHeight, piAttribList);
|
||||
|
|
Loading…
Reference in New Issue