소스 검색

Services/UDS: Fixed a style mistake in GetChannel.

Sebastian Valle 9 년 전
부모
커밋
5c4bd3ef33
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/core/hle/service/nwm/nwm_uds.cpp

+ 1 - 2
src/core/hle/service/nwm/nwm_uds.cpp

@@ -320,8 +320,7 @@ static void GetChannel(Interface* self) {
     IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x1A, 0, 0);
     IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
 
-    bool is_connected = connection_status.status !=
-        static_cast<u32>(NetworkStatus::NotConnected);
+    bool is_connected = connection_status.status != static_cast<u32>(NetworkStatus::NotConnected);
 
     u8 channel = is_connected ? network_channel : 0;