mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:42:56 +00:00
[NTOS] Fix typos.
This commit is contained in:
parent
2e1f594d5e
commit
627b1df579
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@
|
||||||
#define SECS_15_OCT_1582_TO_1601 ((17 + 30 + 31 + 365 * 18 + 5) * SECSPERDAY)
|
#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)
|
#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
|
#define TIME_FRAME 10000
|
||||||
|
|
||||||
#if defined (ALLOC_PRAGMA)
|
#if defined (ALLOC_PRAGMA)
|
||||||
|
@ -247,7 +247,7 @@ ExpAllocateUuids(PULARGE_INTEGER Time,
|
||||||
return STATUS_RETRY;
|
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)
|
if (TimeDiff.HighPart > 0 || TimeDiff.QuadPart > TICKS_PER_CLOCK_TICK * TIME_FRAME)
|
||||||
{
|
{
|
||||||
TimeDiff.QuadPart = TICKS_PER_CLOCK_TICK * TIME_FRAME;
|
TimeDiff.QuadPart = TICKS_PER_CLOCK_TICK * TIME_FRAME;
|
||||||
|
|
|
@ -457,7 +457,7 @@ SepAccessCheckAndAuditAlarm(
|
||||||
if ((ResultListLength == 0) || (ResultListLength > 0x1000))
|
if ((ResultListLength == 0) || (ResultListLength > 0x1000))
|
||||||
{
|
{
|
||||||
Status = STATUS_INVALID_PARAMETER;
|
Status = STATUS_INVALID_PARAMETER;
|
||||||
DPRINT1("Invalud ResultListLength: 0x%lx\n", ResultListLength);
|
DPRINT1("Invalid ResultListLength: 0x%lx\n", ResultListLength);
|
||||||
goto Cleanup;
|
goto Cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue