Module Name:    src
Committed By:   christos
Date:           Sun Aug 12 15:55:27 UTC 2018

Modified Files:
        src/usr.sbin/crash/arch: x86.c

Log Message:
reorder


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/crash/arch/x86.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/crash/arch/x86.c
diff -u src/usr.sbin/crash/arch/x86.c:1.2 src/usr.sbin/crash/arch/x86.c:1.3
--- src/usr.sbin/crash/arch/x86.c:1.2	Sun Aug 12 11:05:13 2018
+++ src/usr.sbin/crash/arch/x86.c	Sun Aug 12 11:55:26 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: x86.c,v 1.2 2018/08/12 15:05:13 christos Exp $	*/
+/*	$NetBSD: x86.c,v 1.3 2018/08/12 15:55:26 christos Exp $	*/
 
 /*-
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: x86.c,v 1.2 2018/08/12 15:05:13 christos Exp $");
+__RCSID("$NetBSD: x86.c,v 1.3 2018/08/12 15:55:26 christos Exp $");
 #endif /* not lint */
 
 #include <ddb/ddb.h>
@@ -50,8 +50,8 @@ __RCSID("$NetBSD: x86.c,v 1.2 2018/08/12
 vaddr_t vm_min_kernel_address = VM_MIN_KERNEL_ADDRESS_DEFAULT;
 
 static struct nlist nl[] = {
-	{ .n_name = "vm_min_kernel_address" },
 	{ .n_name = "_dumppcb" },
+	{ .n_name = "vm_min_kernel_address" },
 	{ .n_name = NULL },
 };
 

Reply via email to