[syslinux] [PATCH 2/2] add missing '\n' to dprintf

Jonathan Boeing jonathan.n.boeing at gmail.com
Mon Feb 9 19:01:03 PST 2015


Signed-off-by: Jonathan Boeing <jonathan.n.boeing at gmail.com>
---
 com32/lib/sys/module/exec.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/com32/lib/sys/module/exec.c b/com32/lib/sys/module/exec.c
index 84b96e0..3bf1eff 100644
--- a/com32/lib/sys/module/exec.c
+++ b/com32/lib/sys/module/exec.c
@@ -162,7 +162,7 @@ int spawn_load(const char *name, int argc, char **argv)
 	struct elf_module *cur_module;
 	int type;
 
-	dprintf("enter: name = %s", name);
+	dprintf("enter: name = %s\n", name);
 
 	if (module == NULL)
 		return -1;
@@ -190,7 +190,7 @@ int spawn_load(const char *name, int argc, char **argv)
 
 	type = get_module_type(module);
 
-	dprintf("type = %d, prev = %s, cur = %s",
+	dprintf("type = %d, prev = %s, cur = %s\n",
 		type, cur_module->name, module->name);
 
 	if(type==EXEC_MODULE)
-- 
2.3.0



More information about the Syslinux mailing list