From 863ee4199c2cdc0c4c71deff86857e9f2bb90ebe Mon Sep 17 00:00:00 2001 From: kuriyama Date: Fri, 1 Nov 2002 02:05:05 +0000 Subject: debugMsg() should end with "\n". --- usr.sbin/sade/command.c | 2 +- usr.sbin/sade/devices.c | 2 +- usr.sbin/sade/variable.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/sade') diff --git a/usr.sbin/sade/command.c b/usr.sbin/sade/command.c index 65d57ae..33ebc35 100644 --- a/usr.sbin/sade/command.c +++ b/usr.sbin/sade/command.c @@ -171,7 +171,7 @@ command_execute(void) the data */ func = (commandFunc)commandStack[i]->cmds[j].ptr; if (isDebug()) - msgDebug("%p: Execute(%s, %s)", + msgDebug("%p: Execute(%s, %s)\n", func, commandStack[i]->key, (char *)commandStack[i]->cmds[j].data); ret = (*func)(commandStack[i]->key, commandStack[i]->cmds[j].data); diff --git a/usr.sbin/sade/devices.c b/usr.sbin/sade/devices.c index 7df1b3e..c9038db 100644 --- a/usr.sbin/sade/devices.c +++ b/usr.sbin/sade/devices.c @@ -449,7 +449,7 @@ skipif: d = Open_Disk(names[i]); if (!d) { - msgDebug("Unable to open disk %s", names[i]); + msgDebug("Unable to open disk %s\n", names[i]); continue; } diff --git a/usr.sbin/sade/variable.c b/usr.sbin/sade/variable.c index 6f896ee..d7f0e1b 100644 --- a/usr.sbin/sade/variable.c +++ b/usr.sbin/sade/variable.c @@ -213,7 +213,7 @@ dump_variables(dialogMenuItem *unused) Variable *vp; if (isDebug()) - msgDebug("Writing sysinstall variables to file.."); + msgDebug("Writing sysinstall variables to file..\n"); fp = fopen("/etc/sysinstall.vars", "w"); if (!fp) { -- cgit v1.1