From 59653fa08a67a0694b3408407f5f92af99470739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Tue, 7 Aug 2012 18:13:32 +0200 Subject: [PATCH] Print space between name of missing EGL extension and 'required'. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michel Dänzer Signed-off-by: Zhigang Gong --- glamor/glamor_egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glamor/glamor_egl.c b/glamor/glamor_egl.c index da9283b11..596470cd7 100644 --- a/glamor/glamor_egl.c +++ b/glamor/glamor_egl.c @@ -508,7 +508,7 @@ glamor_egl_init(ScrnInfoPtr scrn, int fd) #define GLAMOR_CHECK_EGL_EXTENSION(EXT) \ if (!glamor_egl_has_extension(glamor_egl, "EGL_" #EXT)) { \ - ErrorF("EGL_" #EXT "required.\n"); \ + ErrorF("EGL_" #EXT " required.\n"); \ return FALSE; \ }