Apply consistent coding style
Some checks failed
Builds / ExectOS (i686, debug) (push) Failing after 30s
Builds / ExectOS (amd64, debug) (push) Failing after 31s
Builds / ExectOS (amd64, release) (push) Failing after 51s
Builds / ExectOS (i686, release) (push) Failing after 48s

This commit is contained in:
2026-04-09 11:42:41 +02:00
parent 1fa6e90439
commit 17f044cb3f
13 changed files with 108 additions and 108 deletions

View File

@@ -132,7 +132,7 @@ RTL::Memory::MoveMemory(OUT PVOID Destination,
else
{
/* Forward buffer copy */
RtlCopyMemory(Destination, Source, Length);
CopyMemory(Destination, Source, Length);
}
}