diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-08 07:25:30 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-08 07:25:30 +0000 |
commit | fdf44b65203c56f25231a87fc67e2ba11c642d50 (patch) | |
tree | b4485783fdf024f28d2451c04b06868689341939 /sys/uvm/uvm_map.c | |
parent | d43c13703b349fd33334cf3659b5222854538b2b (diff) |
semicolon is not always what it seems, replace w/ a \n in asm labels
Diffstat (limited to 'sys/uvm/uvm_map.c')
-rw-r--r-- | sys/uvm/uvm_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_map.c b/sys/uvm/uvm_map.c index b4e4d9a65cc..dd55c46f33d 100644 --- a/sys/uvm/uvm_map.c +++ b/sys/uvm/uvm_map.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_map.c,v 1.42 2002/03/07 01:08:57 provos Exp $ */ +/* $OpenBSD: uvm_map.c,v 1.43 2002/03/08 07:25:29 mickey Exp $ */ /* $NetBSD: uvm_map.c,v 1.86 2000/11/27 08:40:03 chs Exp $ */ /* @@ -340,7 +340,7 @@ _uvm_tree_sanity(vm_map_t map, char *name) error: #ifdef DDB /* handy breakpoint location for error case */ - __asm(".globl treesanity_label ; treesanity_label:"); + __asm(".globl treesanity_label\ntreesanity_label:"); #endif return (-1); } |