egl/dri2: Fix codestyle in a comment

Pointed out by Kenneth Graunke. Trivial fix.
This commit is contained in:
Chad Versace 2015-05-07 08:09:07 -07:00
parent cedd5008da
commit a6bfdd7b46
1 changed files with 2 additions and 1 deletions

View File

@ -2234,7 +2234,8 @@ dri2_create_sync(_EGLDriver *drv, _EGLDisplay *dpy,
dri2_sync->fence = dri2_dpy->fence->create_fence(dri2_ctx->dri_context);
if (!dri2_sync->fence) {
/* Why did it fail? DRI doesn't return an error code, so we emit
* a generic EGL error that doesn't communicate user error. */
* a generic EGL error that doesn't communicate user error.
*/
_eglError(EGL_BAD_ALLOC, "eglCreateSyncKHR");
free(dri2_sync);
return NULL;