Module Name:    src
Committed By:   kre
Date:           Mon Nov 19 15:43:32 UTC 2018

Modified Files:
        src/sys/arch/amd64/include: frame.h

Log Message:
Fix editing screwup in previous...   noted by Rin Okuyama (thanks!)


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/amd64/include/frame.h

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/amd64/include/frame.h
diff -u src/sys/arch/amd64/include/frame.h:1.19 src/sys/arch/amd64/include/frame.h:1.20
--- src/sys/arch/amd64/include/frame.h:1.19	Mon Nov 19 10:05:09 2018
+++ src/sys/arch/amd64/include/frame.h	Mon Nov 19 15:43:32 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: frame.h,v 1.19 2018/11/19 10:05:09 kre Exp $	*/
+/*	$NetBSD: frame.h,v 1.20 2018/11/19 15:43:32 kre Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -101,8 +101,8 @@ struct intrframe {
 /*
  * Need arch independany way to access IP and CS from intrframe
  */
-#define	_INTRFRAME_IP	if_tf.tf_cs
-#define	_INTRFRAME_CS	if_tf.tf_rip
+#define	_INTRFRAME_CS	if_tf.tf_cs
+#define	_INTRFRAME_IP	if_tf.tf_rip
 #endif
 
 /*

Reply via email to