From f2ea46f5d7cb2dbd4e5c70b1ab2ad0280e766f91 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 26 Dec 2020 17:48:00 +0100 Subject: [PATCH] Add missing newline. --- core/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/settings.cpp b/core/settings.cpp index c262d54..89c8132 100644 --- a/core/settings.cpp +++ b/core/settings.cpp @@ -7,7 +7,7 @@ void Settings::parse_file(const std::string &path) { FILE *f = fopen(path.c_str(), "r"); if (!f) { - printf("Settings::parse_file: Error opening file!"); + printf("Settings::parse_file: Error opening file!\n"); return; }