diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-11-01 02:05:05 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2002-11-01 02:05:05 +0000 |
commit | b46e66a5a5e484be8ca38294fa204c6902f00b61 (patch) | |
tree | 568197e69a34415cf745c437cc7a4db2be9cc345 /usr.sbin/sysinstall/tape.c | |
parent | 9ce4f7a0f083c5aefd95de123e7fac42e6e44631 (diff) | |
download | src-b46e66a5a5e484be8ca38294fa204c6902f00b61.tar.gz src-b46e66a5a5e484be8ca38294fa204c6902f00b61.zip |
debugMsg() should end with "\n".
Notes
Notes:
svn path=/head/; revision=106279
Diffstat (limited to 'usr.sbin/sysinstall/tape.c')
-rw-r--r-- | usr.sbin/sysinstall/tape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/tape.c b/usr.sbin/sysinstall/tape.c index a5ce339fc708..fd73da568e85 100644 --- a/usr.sbin/sysinstall/tape.c +++ b/usr.sbin/sysinstall/tape.c @@ -119,7 +119,7 @@ mediaShutdownTape(Device *dev) if (!tapeInitted) return; if (file_readable((char *)dev->private)) { - msgDebug("Cleaning up results of tape extract in %s..", + msgDebug("Cleaning up results of tape extract in %s..\n", (char *)dev->private); (void)vsystem("rm -rf %s", (char *)dev->private); } |