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@1542 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2010-01-12 15:16:31 +00:00
parent 0983e771c8
commit add482fcef

View File

@ -70,8 +70,7 @@ pstcache_load_bitmap(uint8 cache_id, uint16 cache_idx)
rd_read_file(fd, celldata, cellhdr.length);
bitmap = ui_create_bitmap(cellhdr.width, cellhdr.height, celldata);
DEBUG(("Load bitmap from disk: id=%d, idx=%d, bmp=0x%x)\n", cache_id, cache_idx,
(unsigned int) bitmap));
DEBUG(("Load bitmap from disk: id=%d, idx=%d, bmp=%p)\n", cache_id, cache_idx, bitmap));
cache_put_bitmap(cache_id, cache_idx, bitmap);
xfree(celldata);