https://git.reactos.org/?p=reactos.git;a=commitdiff;h=627b1df579f2fbdc17adda...
commit 627b1df579f2fbdc17addac253416ec8607aa99a Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Mon Apr 22 19:41:19 2019 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Mon Apr 22 19:41:19 2019 +0200
[NTOS] Fix typos. --- ntoskrnl/ex/uuid.c | 4 ++-- ntoskrnl/se/audit.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ntoskrnl/ex/uuid.c b/ntoskrnl/ex/uuid.c index fdda755214..4d3c2932bc 100644 --- a/ntoskrnl/ex/uuid.c +++ b/ntoskrnl/ex/uuid.c @@ -26,7 +26,7 @@ #define SECS_15_OCT_1582_TO_1601 ((17 + 30 + 31 + 365 * 18 + 5) * SECSPERDAY) #define TICKS_15_OCT_1582_TO_1601 ((ULONGLONG)SECS_15_OCT_1582_TO_1601 * TICKSPERSEC)
-/* 10000 in 100-ns model = 0,1 microsecond */ +/* 10000 in 100-ns model = 0.1 microsecond */ #define TIME_FRAME 10000
#if defined (ALLOC_PRAGMA) @@ -247,7 +247,7 @@ ExpAllocateUuids(PULARGE_INTEGER Time, return STATUS_RETRY; }
- /* If time diff > 0,1ms, squash it to reduce it to keep our clock resolution */ + /* If time diff > 0.1ms, squash it to reduce it to keep our clock resolution */ if (TimeDiff.HighPart > 0 || TimeDiff.QuadPart > TICKS_PER_CLOCK_TICK * TIME_FRAME) { TimeDiff.QuadPart = TICKS_PER_CLOCK_TICK * TIME_FRAME; diff --git a/ntoskrnl/se/audit.c b/ntoskrnl/se/audit.c index c10e3bf3ad..e4722f3da9 100644 --- a/ntoskrnl/se/audit.c +++ b/ntoskrnl/se/audit.c @@ -457,7 +457,7 @@ SepAccessCheckAndAuditAlarm( if ((ResultListLength == 0) || (ResultListLength > 0x1000)) { Status = STATUS_INVALID_PARAMETER; - DPRINT1("Invalud ResultListLength: 0x%lx\n", ResultListLength); + DPRINT1("Invalid ResultListLength: 0x%lx\n", ResultListLength); goto Cleanup; }