Austin English : ntdll/tests: Fix a compiler warning on PowerPC.

Alexandre Julliard julliard at winehq.org
Mon Aug 31 10:47:10 CDT 2009


Module: wine
Branch: master
Commit: e88e2239aac0f7e389f805d7dd4be6bb17b0fc1f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e88e2239aac0f7e389f805d7dd4be6bb17b0fc1f

Author: Austin English <austinenglish at gmail.com>
Date:   Sun Aug 30 15:05:49 2009 -0500

ntdll/tests: Fix a compiler warning on PowerPC.

---

 dlls/ntdll/tests/rtlbitmap.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdll/tests/rtlbitmap.c b/dlls/ntdll/tests/rtlbitmap.c
index fc7f6c5..d24f0af 100644
--- a/dlls/ntdll/tests/rtlbitmap.c
+++ b/dlls/ntdll/tests/rtlbitmap.c
@@ -413,7 +413,7 @@ static void test_RtlFindClearBitsAndSet(void)
 static void test_RtlFindMostSignificantBit(void)
 {
   int i;
-  CCHAR cPos;
+  signed char cPos;
   ULONGLONG ulLong;
 
   if (!pRtlFindMostSignificantBit)
@@ -442,7 +442,7 @@ static void test_RtlFindMostSignificantBit(void)
 static void test_RtlFindLeastSignificantBit(void)
 {
   int i;
-  CCHAR cPos;
+  signed char cPos;
   ULONGLONG ulLong;
 
   if (!pRtlFindLeastSignificantBit)




More information about the wine-cvs mailing list