Module Name: src
Committed By: isaki
Date: Fri Aug 14 02:51:48 UTC 2020
Modified Files:
src/sys/arch/x68k/stand/xxboot: bootmain.c
Log Message:
Make compilable even with XXBOOT_DEBUG.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/x68k/stand/xxboot/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/xxboot/bootmain.c
diff -u src/sys/arch/x68k/stand/xxboot/bootmain.c:1.4 src/sys/arch/x68k/stand/xxboot/bootmain.c:1.5
--- src/sys/arch/x68k/stand/xxboot/bootmain.c:1.4 Sat Nov 17 19:10:46 2012
+++ src/sys/arch/x68k/stand/xxboot/bootmain.c Fri Aug 14 02:51:48 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: bootmain.c,v 1.4 2012/11/17 19:10:46 tsutsui Exp $ */
+/* $NetBSD: bootmain.c,v 1.5 2020/08/14 02:51:48 isaki Exp $ */
/*-
* Copyright (c) 1993, 1994 Takumi Nakamura.
@@ -135,7 +135,8 @@ bootmain(void)
/* floppy */
#ifdef XXBOOT_DEBUG
*(uint32_t *)bootdevstr =
- ('f' << 24 | 'd' << 16 | '@' << 8 | '0' + (BOOT_INFO & 3));
+ ('f' << 24) | ('d' << 16) | ('@' << 8) |
+ ('0' + (BOOT_INFO & 3));
bootdevstr[4] = '\0';
#endif
/* fdNa for 1024 bytes/sector, fdNc for 512 bytes/sector */