summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-02-19 17:06:58 +0100
committerThierry Reding <treding@nvidia.com>2014-06-25 15:20:00 +0200
commit2584380e4f53199341bf5ecd108230b3e4155e57 (patch)
treef6808fa70e18701df365c136eca19be209a9fdca
parent2f113d68f6c1572576bc57ecca12e44cc9e438eb (diff)
exa: Fix a warning when enabling DEBUG_TRACE_FALLfixes
The format string wants a picture and a character, but the argument list contains only a character, causing GCC to complain. Add the missing argument. Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r--exa/exa_unaccel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c
index 58262e0b2..b0c6344a5 100644
--- a/exa/exa_unaccel.c
+++ b/exa/exa_unaccel.c
@@ -685,7 +685,7 @@ ExaCheckAddTraps(PicturePtr pPicture,
EXA_PRE_FALLBACK(pScreen);
- EXA_FALLBACK(("to pict %p (%c)\n",
+ EXA_FALLBACK(("to pict %p (%c)\n", pPicture,
exaDrawableLocation(pPicture->pDrawable)));
exaPrepareAccess(pPicture->pDrawable, EXA_PREPARE_DEST);
swap(pExaScr, ps, AddTraps);