svn commit: r242511 - head/sbin/fsck_msdosfs

Jaakko Heinonen jh at FreeBSD.org
Sat Nov 3 09:18:38 UTC 2012


Author: jh
Date: Sat Nov  3 09:18:37 2012
New Revision: 242511
URL: http://svn.freebsd.org/changeset/base/242511

Log:
  Print a newline after the error message.
  
  PR:		bin/168447
  Submitted by:	Boris Kochergin

Modified:
  head/sbin/fsck_msdosfs/check.c

Modified: head/sbin/fsck_msdosfs/check.c
==============================================================================
--- head/sbin/fsck_msdosfs/check.c	Sat Nov  3 04:56:08 2012	(r242510)
+++ head/sbin/fsck_msdosfs/check.c	Sat Nov  3 09:18:37 2012	(r242511)
@@ -68,6 +68,7 @@ checkfilesys(const char *fname)
 
 	if (dosfs < 0) {
 		perr("Can't open `%s'", fname);
+		printf("\n");
 		return 8;
 	}
 


More information about the svn-src-all mailing list