diff options
author | Lioncash <mathew1800@gmail.com> | 2020-02-12 01:18:26 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-02-12 01:18:29 -0500 |
commit | f00a54f5081b7486e0a2f0bee8d15e3e41e186a0 (patch) | |
tree | 24940afdb93e6242ec34b2e5b8cf6c7682c9541b | |
parent | eefd97e80d0563fdc16f038c0194900d74279c0c (diff) |
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.
-rw-r--r-- | src/core/hle/service/bcat/backend/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/backend/backend.cpp b/src/core/hle/service/bcat/backend/backend.cpp index 826c89970..def3410cc 100644 --- a/src/core/hle/service/bcat/backend/backend.cpp +++ b/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)); } |