From 8c645ed401d6b986bc70a0def2a762822bbaf97b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Tue, 12 Jan 2010 15:19:00 +0000 Subject: [PATCH] Avoid gcc warning when using DEBUG; RD_HBITMAP is really a pointer. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1543 423420c4-83ab-492f-b58f-81f9feb106b5 --- cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.c b/cache.c index 95897f8..a947a92 100644 --- a/cache.c +++ b/cache.c @@ -176,7 +176,7 @@ cache_evict_bitmap(uint8 id) idx = g_bmpcache_lru[id]; n_idx = g_bmpcache[id][idx].next; - DEBUG_RDP5(("evict bitmap: id=%d idx=%d n_idx=%d bmp=0x%x\n", id, idx, n_idx, + DEBUG_RDP5(("evict bitmap: id=%d idx=%d n_idx=%d bmp=%p\n", id, idx, n_idx, g_bmpcache[id][idx].bitmap)); ui_destroy_bitmap(g_bmpcache[id][idx].bitmap);