Module Name:    src
Committed By:   reinoud
Date:           Sun Sep  4 20:49:59 UTC 2011

Modified Files:
        src/sys/arch/usermode/usermode: thunk.c

Log Message:
Rename err to nerrno


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/arch/usermode/usermode/thunk.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/arch/usermode/usermode/thunk.c
diff -u src/sys/arch/usermode/usermode/thunk.c:1.30 src/sys/arch/usermode/usermode/thunk.c:1.31
--- src/sys/arch/usermode/usermode/thunk.c:1.30	Sun Sep  4 20:46:58 2011
+++ src/sys/arch/usermode/usermode/thunk.c	Sun Sep  4 20:49:59 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: thunk.c,v 1.30 2011/09/04 20:46:58 reinoud Exp $ */
+/* $NetBSD: thunk.c,v 1.31 2011/09/04 20:49:59 reinoud Exp $ */
 
 /*-
  * Copyright (c) 2011 Jared D. McNeill <jmcne...@invisible.ca>
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifdef __NetBSD__
-__RCSID("$NetBSD: thunk.c,v 1.30 2011/09/04 20:46:58 reinoud Exp $");
+__RCSID("$NetBSD: thunk.c,v 1.31 2011/09/04 20:49:59 reinoud Exp $");
 #endif
 
 #include <sys/types.h>
@@ -235,9 +235,9 @@
 }
 
 void
-thunk_seterrno(int err)
+thunk_seterrno(int nerrno)
 {
-	errno = err;
+	errno = nerrno;
 }
 
 int

Reply via email to