diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-02-06 20:40:46 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-07-07 16:52:35 +0100 |
commit | 5b6f511c2fcad4edaccedbeb9842680cf3aeffb1 (patch) | |
tree | 926acdd88c2e3b09e34dad5d72d347141fcc6272 /hw | |
parent | eb679671560b21206a47476dfbc23518d8d46588 (diff) |
hw/xwin: printf format fix in winCreateDefColormap()
Use %lu for unsigned long
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xwin/wincmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/wincmap.c b/hw/xwin/wincmap.c index 1bdc7df70..318bfac11 100644 --- a/hw/xwin/wincmap.c +++ b/hw/xwin/wincmap.c @@ -515,7 +515,7 @@ winCreateDefColormap(ScreenPtr pScreen) */ #if CYGDEBUG - winDebug("winCreateDefColormap - defColormap: %d\n", pScreen->defColormap); + winDebug("winCreateDefColormap - defColormap: %lu\n", pScreen->defColormap); #endif /* Allocate an X colormap, owned by client 0 */ |