diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-04-30 13:26:20 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-04-30 13:26:20 +0000 |
commit | 5ad58a43446995f79878f43a481d4d40442f974f (patch) | |
tree | 2ba3673804fa6fbf6b14892d39198d4b7dd19673 /sys | |
parent | 7bc7e50f16228a42bd427ef960c4cbec62b2abf2 (diff) |
add missing newline in printf
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_nx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_nx.c b/sys/dev/pci/if_nx.c index 4267d436844..7087b540611 100644 --- a/sys/dev/pci/if_nx.c +++ b/sys/dev/pci/if_nx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_nx.c,v 1.24 2007/04/30 11:13:11 reyk Exp $ */ +/* $OpenBSD: if_nx.c,v 1.25 2007/04/30 13:26:19 reyk Exp $ */ /* * Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org> @@ -528,7 +528,7 @@ nxb_mountroot(void *arg) * XXX from disk if the firmware image in the flash is not * XXX supported by the driver. */ - printf(", requires %u.%u.xx (%u.%u.%u)", + printf(", requires %u.%u.xx (%u.%u.%u)\n", NX_FIRMWARE_MAJOR, NX_FIRMWARE_MINOR, NX_FIRMWARE_MAJOR, NX_FIRMWARE_MINOR, NX_FIRMWARE_BUILD); |