diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-04-24 15:16:49 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-24 09:16:49 +0200 |
| commit | d8a6fa03958c21f68f591f48d342e3d2140d6ba6 (patch) | |
| tree | 190df71f25f891ef764a6aa6d3ec1d19122cebe5 /src/wrapped/wrappedgstreamer.c | |
| parent | 69127efae94678801e0069fc29b49732a06211db (diff) | |
| download | box64-d8a6fa03958c21f68f591f48d342e3d2140d6ba6.tar.gz box64-d8a6fa03958c21f68f591f48d342e3d2140d6ba6.zip | |
Added some missing newlines (#2567)
Diffstat (limited to 'src/wrapped/wrappedgstreamer.c')
| -rw-r--r-- | src/wrapped/wrappedgstreamer.c | 4 |
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) |