aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-03-14 19:19:16 +0100
committerdec05eba <dec05eba@protonmail.com>2024-03-14 19:19:16 +0100
commit5405d9691dda97f6638ac61dca479cddb071cd44 (patch)
tree340c1383d5397a0aa4e714c7a2101b8f5e5db512
parentc3b9541e1c320199bd8223749855b8fae33f6b35 (diff)
File manager remove newline at the end
-rw-r--r--src/QuickMedia.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}