Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sbin/fdisk/mbr_bootsel Fix unbalanced paren.



details:   https://anonhg.NetBSD.org/src/rev/32a4da899621
branches:  trunk
changeset: 536138:32a4da899621
user:      enami <enami%NetBSD.org@localhost>
date:      Mon Sep 09 03:01:26 2002 +0000

description:
Fix unbalanced paren.

diffstat:

 sbin/fdisk/mbr_bootsel/mbr_bootsel.S |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2e8df1445093 -r 32a4da899621 sbin/fdisk/mbr_bootsel/mbr_bootsel.S
--- a/sbin/fdisk/mbr_bootsel/mbr_bootsel.S      Mon Sep 09 02:44:17 2002 +0000
+++ b/sbin/fdisk/mbr_bootsel/mbr_bootsel.S      Mon Sep 09 03:01:26 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mbr_bootsel.S,v 1.5 2002/08/04 20:29:44 ross Exp $     */
+/*     $NetBSD: mbr_bootsel.S,v 1.6 2002/09/09 03:01:26 enami Exp $    */
 
 
 /*-
@@ -124,7 +124,7 @@
 #define movw_ax_mem(mem)       .byte 0xa3 ; .word mem
 
 #define movw_mem_reg(mem,reg) \
-       .byte 0x8b ; .byte (0x06 | ((reg) << 3) ; .word mem
+       .byte 0x8b ; .byte (0x06 | ((reg) << 3)) ; .word mem
 
 #define movw_imm_reg(imm,reg) \
        .byte 0xb8 | reg ; .word imm



Home | Main Index | Thread Index | Old Index