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.
pull/8/head
Lioncash 5 years ago
parent 37f1cf8cbd
commit eefd97e80d

@ -117,7 +117,7 @@ bool NullBackend::SynchronizeDirectory(TitleIDVersion title, std::string name,
}
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;
}

Loading…
Cancel
Save