Beautify debugging output.

This commit is contained in:
Thomas Gellekum 2001-05-22 11:33:17 +00:00
parent d0cd0e62b4
commit 55426b7d9e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76996

View file

@ -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 */