From 4b0c109e31e237965b3d6cde753e56442a10f975 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 13 Sep 2026 21:29:48 +0300 Subject: [PATCH] Added newline to cerr stream --- input_parsing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input_parsing.cpp b/input_parsing.cpp index 102a71c..7c7922d 100644 --- a/input_parsing.cpp +++ b/input_parsing.cpp @@ -41,7 +41,7 @@ ProgramOptions get_params(int argc, char *argv[]) break; default: - std::cerr << "Incorrect character code returned: %d" << option; + std::cerr << "Incorrect character code returned: %d\n" << option; } }