Use SIZE_T for length limiter

このコミットが含まれているのは:
2022-09-26 23:02:38 +02:00
コミット 67acacf528
2個のファイルの変更3行の追加3行の削除

ファイルの表示

@@ -29,9 +29,9 @@ XTCDECL
INT
RtlWideStringCompare(IN CONST PWCHAR String1,
IN CONST PWCHAR String2,
IN CONST ULONG Length)
IN CONST SIZE_T Length)
{
ULONG Index;
SIZE_T Index;
/* Iterate through the strings */
for(Index = 0; ; Index++) {