summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2015-05-07 08:09:07 -0700
committerChad Versace <[email protected]>2015-05-07 08:09:07 -0700
commita6bfdd7b46170bd8105303063717c45f7e6fafee (patch)
tree6cf9e924d4f96154118faaaa3a8094e2766661c9
parentcedd5008dad7750835cc4a4a318afc82fe351eac (diff)
egl/dri2: Fix codestyle in a comment
Pointed out by Kenneth Graunke. Trivial fix.
-rw-r--r--src/egl/drivers/dri2/egl_dri2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c
index 8ed1dda38a6..f4c29da61cf 100644
--- a/src/egl/drivers/dri2/egl_dri2.c
+++ b/src/egl/drivers/dri2/egl_dri2.c
@@ -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;