From 13f1045bf9d450419deff3e8c406af5e4afdba2c Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 29 Oct 2002 19:08:55 +0000 Subject: Add a missing newline to the end of a device_printf(). Reported by: Michael G. Petry --- sys/dev/acpica/acpi_pcib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/dev/acpica/acpi_pcib.c b/sys/dev/acpica/acpi_pcib.c index 5bdf50a..3677966 100644 --- a/sys/dev/acpica/acpi_pcib.c +++ b/sys/dev/acpica/acpi_pcib.c @@ -80,7 +80,7 @@ acpi_pcib_attach(device_t dev, ACPI_BUFFER *prt, int busno) * Attach the PCI bus proper. */ if ((child = device_add_child(dev, "pci", busno)) == NULL) { - device_printf(device_get_parent(dev), "couldn't attach pci bus"); + device_printf(device_get_parent(dev), "couldn't attach pci bus\n"); return_VALUE(ENXIO); } -- cgit v1.1