diff options
author | Raphael Graf <rapha@cvs.openbsd.org> | 2013-08-12 13:44:14 +0000 |
---|---|---|
committer | Raphael Graf <rapha@cvs.openbsd.org> | 2013-08-12 13:44:14 +0000 |
commit | 513df24393cf0d3b73aa2678394ae4b83572aa8a (patch) | |
tree | 649c0ce72ca518e2a9dc8a160d798028ae1a778f /sbin | |
parent | 4de531b37b6b8d620bb8d55ff99161d826304a2f (diff) |
Add missing \n after a warning.
ok miod@
Diffstat (limited to 'sbin')
-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); |