diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-09 09:44:13 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-06-18 10:22:55 -0600 |
| commit | 5da7f62f086626163c9e861fa044d8257f9eda4f (patch) | |
| tree | 2bc1613a52b4a67f35bee7bb5710fab1a87bbbbe | |
| parent | ac19586ed54bb7128bd0259fb1df6b6ae6a60c85 (diff) | |
| download | usermoji-5da7f62f086626163c9e861fa044d8257f9eda4f.tar.xz | |
loader: Remove linefeed from log messages
The output function already puts in linefeeds.
| -rw-r--r-- | loader/loader.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/loader.c b/loader/loader.c index 384ce678..bedf27d9 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -883,14 +883,14 @@ void layer_lib_scan(void) "%s" DIRECTORY_SYMBOL "%s",p,dent->d_name); // Used to call: dlopen(temp_str, RTLD_LAZY) loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, - "Attempt to open library: %s\n", temp_str); + "Attempt to open library: %s", temp_str); if ((handle = loader_platform_open_library(temp_str)) == NULL) { - loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, "open library failed\n"); + loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, "open library failed"); dent = readdir(curdir); continue; } loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, - "Opened library: %s\n", temp_str); + "Opened library: %s", temp_str); /* TODO: Remove fixed count */ if (count == MAX_LAYER_LIBRARIES) { @@ -919,7 +919,7 @@ void layer_lib_scan(void) strcpy(loader.scanned_layers[count].lib_name, temp_str); - loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, "Collecting global extensions for %s\n", temp_str); + loader_log(VK_DBG_REPORT_DEBUG_BIT, 0, "Collecting global extensions for %s", temp_str); get_global_extensions( fp_get_ext, "vkGetGlobalExtensionInfo", |
