mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[HHPCOMP] Fix 2 MSVC C4101 warnings (#2392)
"...\chmc\chmc.c(671): warning C4101: 'code': unreferenced local variable" "...\chmc\chmc.c(671): warning C4101: 'len': unreferenced local variable"
This commit is contained in:
parent
abe1dd31c4
commit
4cd7b3a3df
2 changed files with 2 additions and 3 deletions
|
@ -16,9 +16,6 @@ add_executable(hhpcomp ${SOURCE})
|
|||
target_link_libraries(hhpcomp)
|
||||
|
||||
if(MSVC)
|
||||
# Disable warning "'x': unreferenced local variable"
|
||||
target_compile_options(hhpcomp PRIVATE "/wd4101")
|
||||
|
||||
# Disable warning "'=': conversion from 'a' to 'b', possible loss of data"
|
||||
target_compile_options(hhpcomp PRIVATE "/wd4244")
|
||||
endif()
|
||||
|
|
|
@ -668,7 +668,9 @@ int chmc_system_done(struct chmcFile *chm)
|
|||
sysp = malloc(16384);
|
||||
if (sysp) {
|
||||
UInt32 val;
|
||||
#ifndef __REACTOS__
|
||||
UInt16 code, len;
|
||||
#endif
|
||||
const char *entry_val;
|
||||
|
||||
p = chmc_syscat_mem(sysp, &system->version, sizeof(system->version));
|
||||
|
|
Loading…
Reference in a new issue