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

This commit is contained in:
Andrew Talbot 2007-02-03 22:39:18 +00:00 committed by Alexandre Julliard
parent 7e13c16cbc
commit e463110e22
1 changed files with 1 additions and 1 deletions

View File

@ -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);