Re: [Mesa-dev] [PATCH 2/4] egl: Fix type errors in _eglParseSyncAttribList64()

2016-07-13 Thread Eric Engestrom
On Fri, Jul 08, 2016 at 03:44:19PM -0700, Chad Versace wrote: > - The list elements have type EGLAttrib, not EGLint. > - The array index iterator should be size_t, not EGLint. > --- > src/egl/main/eglsync.c | 13 +++-- > 1 file changed, 7 insertions(+), 6 deletions(-) > > diff --git

[Mesa-dev] [PATCH 2/4] egl: Fix type errors in _eglParseSyncAttribList64()

2016-07-08 Thread Chad Versace
- The list elements have type EGLAttrib, not EGLint. - The array index iterator should be size_t, not EGLint. --- src/egl/main/eglsync.c | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/egl/main/eglsync.c b/src/egl/main/eglsync.c index 33625e9..48714d1 100644