diff --git a/src/cli.cpp b/src/cli.cpp index 927ab99..954e21a 100644 --- a/src/cli.cpp +++ b/src/cli.cpp @@ -142,7 +142,7 @@ int validateCommandLine(Options* options, char *argv[], json *keys) { for (auto el : (*keys)["Products"].items()) { int id; sscanf((el.value()["BINK"][0]).get().c_str(), "%x", &id); - fmt::print("{}: {}\n", el.key(), el.value()["BINK"]); + std::cout << el.key() << ": " << el.value()["BINK"] << std::endl; } fmt::print("\n\n");