[PATCH] exa: Fix a warning when enabling DEBUG_TRACE_FALL

2014-06-25 Thread Thierry Reding
From: Thierry Reding tred...@nvidia.com

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 tred...@nvidia.com
---
 exa/exa_unaccel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c
index 58262e0b2b93..b0c6344a511d 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);
-- 
2.0.0

___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel


Re: [PATCH] exa: Fix a warning when enabling DEBUG_TRACE_FALL

2014-06-25 Thread Keith Packard
Thierry Reding thierry.red...@gmail.com writes:

 From: Thierry Reding tred...@nvidia.com

 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.

Reviewed and merged.
   2f113d6..a3b44ad  master - master

-- 
keith.pack...@intel.com


pgpkfEJb8WGET.pgp
Description: PGP signature
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

[PATCH] exa: Fix a warning when enabling DEBUG_TRACE_FALL

2014-02-19 Thread Thierry Reding
From: Thierry Reding tred...@nvidia.com

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 tred...@nvidia.com
---
 exa/exa_unaccel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c
index 58262e0b2b93..b0c6344a511d 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);
-- 
1.8.4.2

___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel


Re: [PATCH] exa: Fix a warning when enabling DEBUG_TRACE_FALL

2014-02-19 Thread Eric Anholt
Thierry Reding thierry.red...@gmail.com writes:

 From: Thierry Reding tred...@nvidia.com

 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 tred...@nvidia.com

Reviewed-by: Eric Anholt e...@anholt.net


pgptLseT_DeD7.pgp
Description: PGP signature
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel