[syslinux:master] add missing '\n' to dprintf

syslinux-bot for Jonathan Boeing jonathan.n.boeing at gmail.com
Sat May 16 10:00:08 PDT 2015


Commit-ID:  a66d04f09e00643aeb1ea9730b6235e352dda99f
Gitweb:     http://www.syslinux.org/commit/a66d04f09e00643aeb1ea9730b6235e352dda99f
Author:     Jonathan Boeing <jonathan.n.boeing at gmail.com>
AuthorDate: Mon, 9 Feb 2015 20:01:03 -0700
Committer:  Gene Cumm <gene.cumm at gmail.com>
CommitDate: Sun, 3 May 2015 10:48:39 -0400

add missing '\n' to dprintf

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)


More information about the Syslinux-commits mailing list