diff options
author | tg <tg@FreeBSD.org> | 2001-05-22 11:33:17 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2001-05-22 11:33:17 +0000 |
commit | 39e8f234c4a8cadbc8180764a202446bd1ed8f9b (patch) | |
tree | 07fa99018beaefac20b117eb6ba6b8f95bb4fc4c /usr.bin/doscmd | |
parent | 5ff7125205d6bc2e304a05588debfcfcd0af6087 (diff) | |
download | FreeBSD-src-39e8f234c4a8cadbc8180764a202446bd1ed8f9b.zip FreeBSD-src-39e8f234c4a8cadbc8180764a202446bd1ed8f9b.tar.gz |
Beautify debugging output.
Diffstat (limited to 'usr.bin/doscmd')
-rw-r--r-- | usr.bin/doscmd/intff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/doscmd/intff.c b/usr.bin/doscmd/intff.c index 800424c..7955f81 100644 --- a/usr.bin/doscmd/intff.c +++ b/usr.bin/doscmd/intff.c @@ -748,7 +748,7 @@ install_drive(int drive, u_char *path) /* check that DOS considers this a valid drive */ if (drive < 0 || drive >= lol->lastdrive) { - debug(D_REDIR, "Drive %c beyond limit of %c)\n", + debug(D_REDIR, "Drive %c beyond limit of %c\n", drntol(drive), drntol(lol->lastdrive - 1)); return; } @@ -793,7 +793,7 @@ intff(regcontext_t *REGS) { if (lol && sda) { /* already been called? */ - debug(D_REDIR, "redirector duplicate install ignored\n"); + debug(D_REDIR, "redirector duplicate install ignored"); return; } lol = (LOL *)MAKEPTR(R_BX, R_DX); /* where DOS keeps its goodies */ |