From 6bd21bf1b429783fd997fcf248308f992e6f7d8d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 8 Jul 2021 01:59:54 -0500 Subject: [PATCH] [nostalgia/player] Fix warning about using oxErrf without fmt params --- src/nostalgia/player/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/player/main.cpp b/src/nostalgia/player/main.cpp index 1a611f9cd..b3a32571f 100644 --- a/src/nostalgia/player/main.cpp +++ b/src/nostalgia/player/main.cpp @@ -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];