- Fix warnings

svn path=/trunk/; revision=69586
This commit is contained in:
Thomas Faber 2015-10-18 07:32:09 +00:00
parent b11be05a7e
commit b329beb092
4 changed files with 13 additions and 1 deletions

View file

@ -88,7 +88,6 @@ add_library(ext2fs SHARED ${SOURCE} ext2fs.rc)
if(NOT MSVC)
add_target_compile_flags(ext2fs "-Wno-pointer-sign -Wno-unused-function")
if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang")
replace_compile_flags("-Werror" " ")
add_target_compile_flags(ext2fs "-Wno-unused-but-set-variable -Wno-unused-variable -Wno-missing-braces")
endif()
else()

View file

@ -2030,7 +2030,11 @@ Ext2FastIoUnlockAll (
BOOLEAN NTAPI
Ext2FastIoUnlockAllByKey (
IN PFILE_OBJECT FileObject,
#ifdef __REACTOS__
IN PVOID Process,
#else
IN PEPROCESS Process,
#endif
IN ULONG Key,
OUT PIO_STATUS_BLOCK IoStatus,
IN PDEVICE_OBJECT DeviceObject

View file

@ -779,7 +779,11 @@ Ext2FastIoUnlockAll (
BOOLEAN NTAPI
Ext2FastIoUnlockAllByKey (
IN PFILE_OBJECT FileObject,
#ifdef __REACTOS__
IN PVOID Process,
#else
IN PEPROCESS Process,
#endif
IN ULONG Key,
OUT PIO_STATUS_BLOCK IoStatus,
IN PDEVICE_OBJECT DeviceObject

View file

@ -2077,7 +2077,12 @@ Ext2ParseRegistryVolumeParams(
k < ParamPattern[i].Length &&
Params->Buffer[j+k] != L';' &&
Params->Buffer[j+k] != L',' ) {
#ifdef __REACTOS__
ParamPattern[i].uValue[k] = Params->Buffer[j + k];
k++;
#else
ParamPattern[i].uValue[k] = Params->Buffer[j + k++];
#endif
}
if (k) {
NTSTATUS status;