xserver: Branch 'master'

Dodji Seketeli dodji at kemper.freedesktop.org
Wed Sep 26 06:27:50 PDT 2007


 hw/kdrive/ephyr/ephyr_draw.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
diff-tree aa0325db7e8ab11d9418cae14f11c488f443ccaa (from ae8b4f7dcf1291a2f5a0d0159f3e6089eea0578a)
Author: Dodji Seketeli <dodji at openedhand.com>
Date:   Wed Sep 26 15:26:42 2007 +0200

    Xephyr: fix compiler warnings
    
    	* hw/kdrive/ephyr/ephyr_draw.c:
    	  (ephyrDownloadFromScreen),
    	  (ephyrUploadToScreen): fix compiler warnings

diff --git a/hw/kdrive/ephyr/ephyr_draw.c b/hw/kdrive/ephyr/ephyr_draw.c
index 93ef27a..422b7c6 100644
--- a/hw/kdrive/ephyr/ephyr_draw.c
+++ b/hw/kdrive/ephyr/ephyr_draw.c
@@ -308,7 +308,7 @@ ephyrDownloadFromScreen(PixmapPtr pSrc, 
     KdScreenInfo *screen = pScreenPriv->screen;
     EphyrScrPriv *scrpriv = screen->driver;
     EphyrFakexaPriv *fakexa = scrpriv->fakexa;
-    char *src;
+    unsigned char *src;
     int src_pitch, cpp;
 
     if (pSrc->drawable.bitsPerPixel < 8)
@@ -345,7 +345,7 @@ ephyrUploadToScreen(PixmapPtr pDst, int 
     KdScreenInfo *screen = pScreenPriv->screen;
     EphyrScrPriv *scrpriv = screen->driver;
     EphyrFakexaPriv *fakexa = scrpriv->fakexa;
-    char *dst;
+    unsigned char *dst;
     int dst_pitch, cpp;
 
     if (pDst->drawable.bitsPerPixel < 8)


More information about the xorg-commit mailing list