aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Boeing <jonathan.n.boeing@gmail.com>2015-02-09 20:01:03 -0700
committerGene Cumm <gene.cumm@gmail.com>2015-05-03 10:48:39 -0400
commita66d04f09e00643aeb1ea9730b6235e352dda99f (patch)
tree53ec99a53d270c95e27eb2994ed75079805ca02a
parentb4f20c17ea17986d6bf8aa6150a6d80c2491cfb9 (diff)
downloadsyslinux-a66d04f09e00643aeb1ea9730b6235e352dda99f.tar.gz
syslinux-a66d04f09e00643aeb1ea9730b6235e352dda99f.tar.xz
syslinux-a66d04f09e00643aeb1ea9730b6235e352dda99f.zip
add missing '\n' to dprintf
Signed-off-by: Jonathan Boeing <jonathan.n.boeing@gmail.com>
-rw-r--r--com32/lib/sys/module/exec.c4
1 files changed, 2 insertions, 2 deletions
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)