Jinoh Kang (@iamahuman) commented about dlls/ntdll/unix/file.c:
+/******************************************************************************
NtFlushBuffersFileEx (NTDLL.@)
- */
+NTSTATUS WINAPI NtFlushBuffersFileEx( HANDLE handle, ULONG flags, void *params, ULONG size, IO_STATUS_BLOCK *io ) { NTSTATUS ret; HANDLE wait_handle; enum server_fd_type type; int fd, needs_close;
- TRACE( "(%p,0x%08x,%p,0x%08x,%p)\n", handle, (int)flags, params, (int)size, io );
- if (flags) FIXME( "flags 0x%08x ignored\n", (int)flags );
- if (params) FIXME( "params %p/0x%08x ignored\n", params, (int)size );
```suggestion:-0+0 if (params || size) FIXME( "params %p/0x%08x ignored\n", params, (int)size ); ```