diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2016-10-15 21:42:54 +0200 |
---|---|---|
committer | Ulrich Sibiller <u.sibiller@science-computing.de> | 2016-10-20 10:16:35 +0200 |
commit | 54b7561f989b1fc85431d9856e89a58b0443ee3b (patch) | |
tree | ed94b63f15b6cfcca473e4d7aec60e0dbf037642 /nx-X11/programs/Xserver/hw/nxagent | |
parent | 3c5621c37064958a96707df2f2fb831f21a2f97e (diff) | |
download | nx-libs-54b7561f989b1fc85431d9856e89a58b0443ee3b.tar.gz nx-libs-54b7561f989b1fc85431d9856e89a58b0443ee3b.tar.bz2 nx-libs-54b7561f989b1fc85431d9856e89a58b0443ee3b.zip |
Colormap.c: add cast to avoid warning
Colormap.c: In function ‘nxagentSetInstalledColormapWindows’:
Colormap.c:314:27: warning: format ‘%p’ expects argument of type ‘void *’, but argument 3 has type ‘WindowPtr’ [-Wformat=]
pWin, pWin -> drawable.class);
^
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Colormap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Colormap.c b/nx-X11/programs/Xserver/hw/nxagent/Colormap.c index ecfbe210e..c21bcbbe7 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Colormap.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Colormap.c @@ -311,7 +311,7 @@ void nxagentSetInstalledColormapWindows(ScreenPtr pScreen) { fprintf(stderr, "nxagentSetInstalledColormapWindows: WARNING! " "Window at [%p] has no colormap with class [%d].\n", - pWin, pWin -> drawable.class); + (void *)pWin, pWin -> drawable.class); } #endif } |