[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:
Serge Gautherie 2020-06-06 18:42:47 +02:00 committed by GitHub
parent abe1dd31c4
commit 4cd7b3a3df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -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()

View file

@ -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));