Correct data types
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2022-08-13 17:24:22 +02:00
parent a6d892bf08
commit 96871fd042
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@
#include "xttypes.h" #include "xttypes.h"
UINT64 INT
RtlWideStringCompare(IN CONST PWCHAR String1, RtlWideStringCompare(IN CONST PWCHAR String1,
IN CONST PWCHAR String2, IN CONST PWCHAR String2,
IN CONST ULONG Length); IN CONST ULONG Length);

View File

@ -25,12 +25,12 @@
* *
* @since XT 1.0 * @since XT 1.0
*/ */
UINT64 INT
RtlWideStringCompare(IN CONST PWCHAR String1, RtlWideStringCompare(IN CONST PWCHAR String1,
IN CONST PWCHAR String2, IN CONST PWCHAR String2,
IN CONST ULONG Length) IN CONST ULONG Length)
{ {
UINT64 Index; ULONG Index;
/* Iterate through the strings */ /* Iterate through the strings */
for(Index = 0; Index < Length; Index++) { for(Index = 0; Index < Length; Index++) {
@ -74,8 +74,8 @@ RtlWideStringTokenize(IN PWCHAR String,
IN CONST PWCHAR Delimiter, IN CONST PWCHAR Delimiter,
IN OUT PWCHAR *SavePtr) IN OUT PWCHAR *SavePtr)
{ {
WCHAR *Span, *Token; PWCHAR Span, Token;
UINT64 Char, SpanChar; WCHAR Char, SpanChar;
/* Check if there is anything to tokenize */ /* Check if there is anything to tokenize */
if(String == NULL && (String = *SavePtr) == NULL) if(String == NULL && (String = *SavePtr) == NULL)