From 5405d9691dda97f6638ac61dca479cddb071cd44 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 14 Mar 2024 19:19:16 +0100 Subject: File manager remove newline at the end --- src/QuickMedia.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp index ddc50d5..b47ab13 100644 --- a/src/QuickMedia.cpp +++ b/src/QuickMedia.cpp @@ -1889,7 +1889,7 @@ namespace QuickMedia { } void Program::select_file(const std::string &filepath) { - puts(filepath.c_str()); + printf("%s", filepath.c_str()); selected_files.clear(); selected_files.push_back(filepath); } -- cgit v1.2.3