소스 검색

bcat/backend: Make formatting of passphrase consistent in NullBackend::SetPassphrase()

Aligns the '=' to be consistent with the rest of the logs within this
source file.
Lioncash 6 년 전
부모
커밋
f00a54f508
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/hle/service/bcat/backend/backend.cpp

+ 1 - 1
src/core/hle/service/bcat/backend/backend.cpp

@@ -123,7 +123,7 @@ bool NullBackend::Clear(u64 title_id) {
 }
 
 void NullBackend::SetPassphrase(u64 title_id, const Passphrase& passphrase) {
-    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase = {}", title_id,
+    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase={}", title_id,
               Common::HexToString(passphrase));
 }