diff options
Diffstat (limited to 'src/evergreen_exa.c')
-rw-r--r-- | src/evergreen_exa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/evergreen_exa.c b/src/evergreen_exa.c index bd571356..86f455de 100644 --- a/src/evergreen_exa.c +++ b/src/evergreen_exa.c @@ -1134,7 +1134,7 @@ static Bool EVERGREENPrepareComposite(int op, PicturePtr pSrcPicture, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, pSrcPicture->pSourcePict->solidFill.color); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } dst_obj.bo = radeon_get_pixmap_bo(pDst); @@ -1165,7 +1165,7 @@ static Bool EVERGREENPrepareComposite(int op, PicturePtr pSrcPicture, if (!pMask) { if (!pSrcPicture->pDrawable) pScreen->DestroyPixmap(pSrc); - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } } mask_obj.bo = radeon_get_pixmap_bo(pMask); |