[nostalgia/player] Fix warning about using oxErrf without fmt params

This commit is contained in:
Gary Talent 2021-07-08 01:59:54 -05:00
parent fcff38c3fa
commit 6bd21bf1b4

View File

@ -13,7 +13,7 @@
static ox::Error run(int argc, const char **argv) noexcept {
ox::trace::init();
if (argc < 2) {
oxErrf("Please provide path to project directory or OxFS file.");
oxErr("Please provide path to project directory or OxFS file.");
return OxError(1);
}
const auto path = argv[1];