Module Name: src Committed By: isaki Date: Sat Jul 17 06:27:03 UTC 2010
Modified Files: src/sys/arch/x68k/stand/boot_ufs: bootmain.c Log Message: Add a missing newline in BOOT_DEBUG mode. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/arch/x68k/stand/boot_ufs/bootmain.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/x68k/stand/boot_ufs/bootmain.c diff -u src/sys/arch/x68k/stand/boot_ufs/bootmain.c:1.12 src/sys/arch/x68k/stand/boot_ufs/bootmain.c:1.13 --- src/sys/arch/x68k/stand/boot_ufs/bootmain.c:1.12 Wed Mar 18 10:22:38 2009 +++ src/sys/arch/x68k/stand/boot_ufs/bootmain.c Sat Jul 17 06:27:03 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: bootmain.c,v 1.12 2009/03/18 10:22:38 cegger Exp $ */ +/* $NetBSD: bootmain.c,v 1.13 2010/07/17 06:27:03 isaki Exp $ */ /*- * Copyright (c) 1993, 1994 Takumi Nakamura. @@ -196,6 +196,10 @@ #endif } +#ifdef BOOT_DEBUG + B_PRINT("\r\n"); +#endif + return ha; }