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.
This commit is contained in:
Lioncash 2020-02-12 01:14:45 -05:00
parent 37f1cf8cbd
commit eefd97e80d

View File

@ -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;
}