Francois Gouget : ntdll/tests: Fix the spelling of IID_Endianness.

Alexandre Julliard julliard at winehq.org
Wed Aug 24 14:05:28 CDT 2011


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Wed Aug 24 15:19:17 2011 +0200

ntdll/tests: Fix the spelling of IID_Endianness.

---

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

diff --git a/dlls/ntdll/tests/rtlstr.c b/dlls/ntdll/tests/rtlstr.c
index a5f0806..5205089 100644
--- a/dlls/ntdll/tests/rtlstr.c
+++ b/dlls/ntdll/tests/rtlstr.c
@@ -1830,7 +1830,7 @@ static const WCHAR szGuid[] = { '{','0','1','0','2','0','3','0','4','-',
 static const WCHAR szGuid2[] = { '{','0','1','0','2','0','3','0','4','-',
   '0','5','0','6','-'  ,'0','7','0','8','-','0','9','0','A','-',
   '0','B','0','C','0','D','0','E','0','F','0','A',']','\0' };
-DEFINE_GUID(IID_Endianess, 0x01020304, 0x0506, 0x0708, 0x09, 0x0A, 0x0B,
+DEFINE_GUID(IID_Endianness, 0x01020304, 0x0506, 0x0708, 0x09, 0x0A, 0x0B,
             0x0C, 0x0D, 0x0E, 0x0F, 0x0A);
 
 static void test_RtlGUIDFromString(void)
@@ -1844,7 +1844,7 @@ static void test_RtlGUIDFromString(void)
 
   ret = pRtlGUIDFromString(&str, &guid);
   ok(ret == 0, "expected ret=0, got 0x%0x\n", ret);
-  ok(IsEqualGUID(&guid, &IID_Endianess), "Endianess broken\n");
+  ok(IsEqualGUID(&guid, &IID_Endianness), "Endianness broken\n");
 
   str.Length = str.MaximumLength = sizeof(szGuid2) - sizeof(WCHAR);
   str.Buffer = (LPWSTR)szGuid2;
@@ -1861,9 +1861,9 @@ static void test_RtlStringFromGUID(void)
   str.Length = str.MaximumLength = 0;
   str.Buffer = NULL;
 
-  ret = pRtlStringFromGUID(&IID_Endianess, &str);
+  ret = pRtlStringFromGUID(&IID_Endianness, &str);
   ok(ret == 0, "expected ret=0, got 0x%0x\n", ret);
-  ok(str.Buffer && !lstrcmpiW(str.Buffer, szGuid), "Endianess broken\n");
+  ok(str.Buffer && !lstrcmpiW(str.Buffer, szGuid), "Endianness broken\n");
   pRtlFreeUnicodeString(&str);
 }
 




More information about the wine-cvs mailing list