diff options
author | 2013-08-12 13:44:13 +0000 | |
---|---|---|
committer | 2013-08-12 13:44:13 +0000 | |
commit | ee7788d473efdb9600d3f816421b595269b2064f (patch) | |
tree | 61833ace16637751007ef55dc6f220591c381875 | |
parent | Make sure we don't install the private radeondrm(4) headers, by leaving out (diff) | |
download | wireguard-openbsd-ee7788d473efdb9600d3f816421b595269b2064f.tar.xz wireguard-openbsd-ee7788d473efdb9600d3f816421b595269b2064f.zip |
Add missing \n after a warning.
ok miod@
-rw-r--r-- | sbin/fsck_msdos/boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck_msdos/boot.c b/sbin/fsck_msdos/boot.c index 8a7f54fcabe..93ec700300e 100644 --- a/sbin/fsck_msdos/boot.c +++ b/sbin/fsck_msdos/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.16 2012/03/31 17:53:34 krw Exp $ */ +/* $OpenBSD: boot.c,v 1.17 2013/08/12 13:44:13 rapha Exp $ */ /* $NetBSD: boot.c,v 1.5 1997/10/17 11:19:23 ws Exp $ */ /* @@ -162,7 +162,7 @@ readboot(int dosfs, struct bootblock *boot) || fsinfo[0x3fd] || fsinfo[0x3fe] != 0x55 || fsinfo[0x3ff] != 0xaa) { - pwarn("Invalid signature in fsinfo block"); + pwarn("Invalid signature in fsinfo block\n"); if (ask(0, "fix")) { memcpy(fsinfo, "RRaA", 4); memcpy(fsinfo + 0x1e4, "rrAa", 4); |