summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade
diff options
context:
space:
mode:
authorkuriyama <kuriyama@FreeBSD.org>2002-11-01 02:05:05 +0000
committerkuriyama <kuriyama@FreeBSD.org>2002-11-01 02:05:05 +0000
commit863ee4199c2cdc0c4c71deff86857e9f2bb90ebe (patch)
tree568197e69a34415cf745c437cc7a4db2be9cc345 /usr.sbin/sade
parentab4014bff87f3a779f21a493ccf9ee736bee0151 (diff)
downloadFreeBSD-src-863ee4199c2cdc0c4c71deff86857e9f2bb90ebe.zip
FreeBSD-src-863ee4199c2cdc0c4c71deff86857e9f2bb90ebe.tar.gz
debugMsg() should end with "\n".
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r--usr.sbin/sade/command.c2
-rw-r--r--usr.sbin/sade/devices.c2
-rw-r--r--usr.sbin/sade/variable.c2
3 files changed, 3 insertions, 3 deletions
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) {
OpenPOWER on IntegriCloud