winecfg: fix a compiler warning on PowerPC

Austin English austinenglish at gmail.com
Thu Dec 2 13:36:38 CST 2010


-- 
-Austin
-------------- next part --------------
diff --git a/programs/winecfg/driveui.c b/programs/winecfg/driveui.c
index 58adb98..6ed74c6 100644
--- a/programs/winecfg/driveui.c
+++ b/programs/winecfg/driveui.c
@@ -304,7 +304,7 @@ static void on_add_click(HWND dialog)
        the default. In future we should be able to temporarily map /
        then invoke the directory chooser dialog. */
 
-    char new = 'C'; /* we skip A and B, they are historically floppy drives */
+    signed char new = 'C'; /* we skip A and B, they are historically floppy drives */
     ULONG mask = ~drive_available_mask(0); /* the mask is now which drives aren't available */
     int i, c;
 


More information about the wine-patches mailing list