mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 04:13:18 +00:00
Silence two warnings in cmlib.
This makes the livecd part compiling warning-free on 32-bit systems. On 64-bit hosts, we still need to squash out this __cdecl warning. svn path=/trunk/; revision=28851
This commit is contained in:
parent
128482c59c
commit
7a0b809846
1 changed files with 2 additions and 2 deletions
|
@ -156,8 +156,8 @@ HvpInitializeMemoryHive(
|
||||||
if (ChunkSize < sizeof(HBASE_BLOCK) ||
|
if (ChunkSize < sizeof(HBASE_BLOCK) ||
|
||||||
!HvpVerifyHiveHeader((PHBASE_BLOCK)ChunkBase))
|
!HvpVerifyHiveHeader((PHBASE_BLOCK)ChunkBase))
|
||||||
{
|
{
|
||||||
DPRINT1("Registry is corrupt: ChunkSize %d < sizeof(HBASE_BLOCK) %d, "
|
DPRINT1("Registry is corrupt: ChunkSize %lu < sizeof(HBASE_BLOCK) %lu, "
|
||||||
"or HvpVerifyHiveHeader() failed\n", ChunkSize, sizeof(HBASE_BLOCK));
|
"or HvpVerifyHiveHeader() failed\n", ChunkSize, (SIZE_T)sizeof(HBASE_BLOCK));
|
||||||
return STATUS_REGISTRY_CORRUPT;
|
return STATUS_REGISTRY_CORRUPT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue