about summary refs log tree commit diff stats
path: root/src/wrapped/wrappedgstreamer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapped/wrappedgstreamer.c')
-rw-r--r--src/wrapped/wrappedgstreamer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrapped/wrappedgstreamer.c b/src/wrapped/wrappedgstreamer.c
index 676f0fe1..1818ae57 100644
--- a/src/wrapped/wrappedgstreamer.c
+++ b/src/wrapped/wrappedgstreamer.c
@@ -925,7 +925,7 @@ EXPORT void* my_gst_plugin_load_file(x64emu_t* emu, const char* filename, void**
 static void register_plugins_from_folder(x64emu_t* emu, const char* folder)
 {
     if(!folder) {
-        printf_log(/*LOG_DEBUG*/LOG_INFO, "BOX64 didn't detect any custom gstreamer-1.0 folder");
+        printf_log(/*LOG_DEBUG*/ LOG_INFO, "BOX64 didn't detect any custom gstreamer-1.0 folder\n");
         return;
     }
     DIR *d;
@@ -938,7 +938,7 @@ static void register_plugins_from_folder(x64emu_t* emu, const char* folder)
         char* p = strrchr(native_folder, '/');
         *p = '\0';
         strcat(native_folder, "/gstreamer-1.0/");
-        printf_log(/*LOG_DEBUG*/LOG_INFO, "BOX64 Will look for native gstreamer plugin in %s", native_folder);
+        printf_log(/*LOG_DEBUG*/ LOG_INFO, "BOX64 Will look for native gstreamer plugin in %s\n", native_folder);
     }
     d = opendir(folder);
     if(!d)