Add a missing newline to an error message.

PR:		30436
Submitted by:	Joerg Lehners <Lehners@Informatik.Uni-Oldenburg.DE>
This commit is contained in:
dd 2001-09-09 14:48:52 +00:00
parent 87bf1e0e5c
commit 80c581e156
2 changed files with 2 additions and 2 deletions

View File

@ -1358,7 +1358,7 @@ determined_type: ;
com->irqres, INTR_TYPE_TTY,
siointr, com, &com->cookie);
if (ret == 0)
device_printf(dev, "unable to activate interrupt in fast mode - using normal mode");
device_printf(dev, "unable to activate interrupt in fast mode - using normal mode\n");
}
if (ret)
device_printf(dev, "could not activate interrupt\n");

View File

@ -1358,7 +1358,7 @@ determined_type: ;
com->irqres, INTR_TYPE_TTY,
siointr, com, &com->cookie);
if (ret == 0)
device_printf(dev, "unable to activate interrupt in fast mode - using normal mode");
device_printf(dev, "unable to activate interrupt in fast mode - using normal mode\n");
}
if (ret)
device_printf(dev, "could not activate interrupt\n");