diff options
author | Grigori Goronzy <greg@chown.ath.cx> | 2013-05-18 13:46:03 +0200 |
---|---|---|
committer | Grigori Goronzy <greg@chown.ath.cx> | 2013-07-22 05:05:34 +0200 |
commit | c08e09b7bec441c4bf93b4cae4de1260754bf940 (patch) | |
tree | 176e177c0701a228340df0b1599f5465696de77d /src/r600_exa.c | |
parent | c16c59f8f9b6aa7a4a6a6465582ad98f02a3606a (diff) |
Fix RADEON_FALLBACK logging
Diffstat (limited to 'src/r600_exa.c')
-rw-r--r-- | src/r600_exa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c index fbb1383d..b2432346 100644 --- a/src/r600_exa.c +++ b/src/r600_exa.c @@ -1179,7 +1179,7 @@ static Bool R600PrepareComposite(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); @@ -1211,7 +1211,7 @@ static Bool R600PrepareComposite(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")); } } |