mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[KMTESTS:CC] Fix MSVC build.
This commit is contained in:
parent
e6d7480287
commit
ab8470d8bb
1 changed files with 3 additions and 3 deletions
|
@ -100,9 +100,9 @@ static CACHE_MANAGER_CALLBACKS Callbacks = {
|
|||
};
|
||||
|
||||
static CC_FILE_SIZES FileSizes = {
|
||||
.AllocationSize.QuadPart = 0x4000,
|
||||
.FileSize.QuadPart = 0x4000,
|
||||
.ValidDataLength.QuadPart = 0x4000,
|
||||
RTL_CONSTANT_LARGE_INTEGER((LONGLONG)0x4000), // .AllocationSize
|
||||
RTL_CONSTANT_LARGE_INTEGER((LONGLONG)0x4000), // .FileSize
|
||||
RTL_CONSTANT_LARGE_INTEGER((LONGLONG)0x4000) // .ValidDataLength
|
||||
};
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue