From 4c5bfd529f6f182a3f0ac1b9bb5c3170a297f460 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Sat, 29 Dec 2012 06:42:30 +0000 Subject: [PATCH] glamor_utils: fix unlikely define use using a define across a split line expression is failure, compiling with warnings shows this up. Signed-off-by: Dave Airlie --- glamor/glamor_utils.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glamor/glamor_utils.h b/glamor/glamor_utils.h index 36beb49ed..d30783826 100644 --- a/glamor/glamor_utils.h +++ b/glamor/glamor_utils.h @@ -80,8 +80,7 @@ #define pixmap_priv_get_fbo_off(_priv_, _xoff_, _yoff_) \ do { \ - if (unlikely(_priv_ && (_priv_)->type \ - == GLAMOR_TEXTURE_LARGE)) { \ + if (unlikely(_priv_ && (_priv_)->type == GLAMOR_TEXTURE_LARGE)) { \ *(_xoff_) = - (_priv_)->large.box.x1; \ *(_yoff_) = - (_priv_)->large.box.y1; \ } else { \