Module Name:    src
Committed By:   kre
Date:           Mon Dec 13 03:17:50 UTC 2021

Modified Files:
        src/sys/ddb: db_sym.c

Log Message:
mv out: label into the #ifdef _KERNEL section, as it is only
referenced from there.  Hopefully ubbreak buikd of usr.sbin/crash


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/sys/ddb/db_sym.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/ddb/db_sym.c
diff -u src/sys/ddb/db_sym.c:1.68 src/sys/ddb/db_sym.c:1.69
--- src/sys/ddb/db_sym.c:1.68	Mon Dec 13 01:25:29 2021
+++ src/sys/ddb/db_sym.c	Mon Dec 13 03:17:50 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: db_sym.c,v 1.68 2021/12/13 01:25:29 chs Exp $	*/
+/*	$NetBSD: db_sym.c,v 1.69 2021/12/13 03:17:50 kre Exp $	*/
 
 /*
  * Mach Operating System
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_sym.c,v 1.68 2021/12/13 01:25:29 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_sym.c,v 1.69 2021/12/13 03:17:50 kre Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddbparam.h"
@@ -449,8 +449,8 @@ db_printsym(db_expr_t off, db_strategy_t
 			return;
 		}
 	}
+ out:;
 #endif
-out:
 	(*pr)("%s", db_num_to_str(off));
 	return;
 }

Reply via email to