瀏覽代碼

bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear()

A formatting specifier within Clear wasn't being used, which will cause
fmt to throw an exception. This fixes that.
Lioncash 6 年之前
父節點
當前提交
eefd97e80d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/hle/service/bcat/backend/backend.cpp

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

@@ -117,7 +117,7 @@ bool NullBackend::SynchronizeDirectory(TitleIDVersion title, std::string name,
 }
 }
 
 
 bool NullBackend::Clear(u64 title_id) {
 bool NullBackend::Clear(u64 title_id) {
-    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}");
+    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}", title_id);
 
 
     return true;
     return true;
 }
 }