Jinoh Kang (@iamahuman) commented about dlls/kernelbase/file.c:
*/ BOOL WINAPI DECLSPEC_HOTPATCH CancelSynchronousIo( HANDLE thread ) {
- FIXME( "(%p): stub\n", thread );
- SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
- return FALSE;
- IO_STATUS_BLOCK io;
- return set_ntstatus( NtCancelSynchronousIoFile( thread, NULL, &io ) );
Per Wine code style, you should omit the second space in `&io ) )`.
```suggestion:-0+0 return set_ntstatus( NtCancelSynchronousIoFile( thread, NULL, &io )); ```