From a66d04f09e00643aeb1ea9730b6235e352dda99f Mon Sep 17 00:00:00 2001 From: Jonathan Boeing Date: Mon, 9 Feb 2015 20:01:03 -0700 Subject: add missing '\n' to dprintf Signed-off-by: Jonathan Boeing --- com32/lib/sys/module/exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'com32/lib') diff --git a/com32/lib/sys/module/exec.c b/com32/lib/sys/module/exec.c index 84b96e01..3bf1effc 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) -- cgit v1.2.1