diff options
author | 2007-04-30 13:26:19 +0000 | |
---|---|---|
committer | 2007-04-30 13:26:19 +0000 | |
commit | 6a49a58dbea642403a00d09d2411d37bd09eb83b (patch) | |
tree | 7b4327658cb84de41e1effdd5137634e1d0ff483 | |
parent | simplify regen mode logic: if we don't add anything to the packing-list, (diff) | |
download | wireguard-openbsd-6a49a58dbea642403a00d09d2411d37bd09eb83b.tar.xz wireguard-openbsd-6a49a58dbea642403a00d09d2411d37bd09eb83b.zip |
add missing newline in printf
-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); |