diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-05-01 17:33:35 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-08-28 12:06:51 +0100 |
commit | 8cc88fbe9e4699cd2570641eb2752977b5505d16 (patch) | |
tree | f8d3594697217d04ac58143d2c6239d14b660897 | |
parent | 27cf5840272810ae20fdae550db71ec48cf1b02d (diff) |
debug output format fix in DRISwapContext()
xorg/xserver/hw/xfree86/dri/dri.c:1695:19: error: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘DRIContextPrivPtr’ [-Werror=format=] ^
xorg/xserver/hw/xfree86/dri/dri.c:1695:19: error: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘DRIContextPrivPtr’ [-Werror=format=]
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | hw/xfree86/dri/dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/dri/dri.c b/hw/xfree86/dri/dri.c index ae92fc213..875c9cc6c 100644 --- a/hw/xfree86/dri/dri.c +++ b/hw/xfree86/dri/dri.c @@ -1691,7 +1691,7 @@ DRISwapContext(int drmFD, void *oldctx, void *newctx) if (!newContext) { DRIDrvMsg(pScreen->myNum, X_ERROR, - "[DRI] Context Switch Error: oldContext=%x, newContext=%x\n", + "[DRI] Context Switch Error: oldContext=%p, newContext=%p\n", oldContext, newContext); return; } |