Module Name: xsrc
Committed By: christos
Date: Tue May 24 19:37:25 UTC 2011
Modified Files:
xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec: decCursor.c
Log Message:
need DrawablePtr not Drawable
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c
diff -u xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c:1.4 xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c:1.5
--- xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c:1.4 Mon May 23 15:48:14 2011
+++ xsrc/xfree/xc/programs/Xserver/hw/netbsd/dec/decCursor.c Tue May 24 15:37:25 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: decCursor.c,v 1.4 2011/05/23 19:48:14 christos Exp $ */
+/* $NetBSD: decCursor.c,v 1.5 2011/05/24 19:37:25 christos Exp $ */
/* XConsortium: sunCursor.c,v 5.19 94/04/17 20:29:35 gildea Exp */
/*
@@ -112,7 +112,7 @@
box.x2 = w;
box.y2 = h;
REGION_INIT(pScreen, &rgnDst, &box, 1);
- mfbDoBitblt((Drawable)src, (Drawable)dst, GXcopy, &rgnDst, ptSrc);
+ mfbDoBitblt((DrawablePtr)src, (DrawablePtr)dst, GXcopy, &rgnDst, ptSrc);
REGION_UNINIT(pScreen, &rgnDst);
FreeScratchPixmapHeader(src);
FreeScratchPixmapHeader(dst);