Commit e463110e authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winex11.drv: Declare variable signed to accept possible negative return value (Coverity).

parent 7e13c16c
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment