On Fri, 6 Oct 2023 15:55:54 GMT, Alexey Ivanov <aiva...@openjdk.org> wrote:
>> Renjith Kannath Pariyangad has updated the pull request incrementally with >> three additional commits since the last revision: >> >> - Whitespace error fixed >> - Whitespace error fixed >> - CoInitializeEx error check modified with better condition > > src/java.desktop/windows/native/libjsound/PLATFORM_API_WinOS_DirectSound.cpp > line 234: > >> 232: } >> 233: >> 234: if(hr != RPC_E_CHANGED_MODE) { > > Suggestion: > > if (hr != RPC_E_CHANGED_MODE) { > > Space between the `if` keyword and the opening parenthesis. Included all suggestions ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/14898#discussion_r1349834270