Module Name:    src
Committed By:   joerg
Date:           Tue May 11 02:34:40 UTC 2010

Modified Files:
        src/sys/arch/amd64/amd64: netbsd32_machdep.c

Log Message:
Fix indentation


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/arch/amd64/amd64/netbsd32_machdep.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/amd64/amd64/netbsd32_machdep.c
diff -u src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.62 src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.63
--- src/sys/arch/amd64/amd64/netbsd32_machdep.c:1.62	Fri Apr 23 19:18:09 2010
+++ src/sys/arch/amd64/amd64/netbsd32_machdep.c	Tue May 11 02:34:39 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: netbsd32_machdep.c,v 1.62 2010/04/23 19:18:09 rmind Exp $	*/
+/*	$NetBSD: netbsd32_machdep.c,v 1.63 2010/05/11 02:34:39 joerg Exp $	*/
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.62 2010/04/23 19:18:09 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.63 2010/05/11 02:34:39 joerg Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -612,21 +612,21 @@
 	int error;
 
 	switch (SCARG(uap, op)) {
-		case X86_IOPL:
-			error = x86_iopl(l,
-			    NETBSD32PTR64(SCARG(uap, parms)), retval);
-			break;
-		case X86_GET_MTRR:
-			error = x86_64_get_mtrr32(l,
-			    NETBSD32PTR64(SCARG(uap, parms)), retval);
-			break;
-		case X86_SET_MTRR:
-			error = x86_64_set_mtrr32(l,
-			    NETBSD32PTR64(SCARG(uap, parms)), retval);
-			break;
-		default:
-			error = EINVAL;
-			break;
+	case X86_IOPL:
+		error = x86_iopl(l,
+		    NETBSD32PTR64(SCARG(uap, parms)), retval);
+		break;
+	case X86_GET_MTRR:
+		error = x86_64_get_mtrr32(l,
+		    NETBSD32PTR64(SCARG(uap, parms)), retval);
+		break;
+	case X86_SET_MTRR:
+		error = x86_64_set_mtrr32(l,
+		    NETBSD32PTR64(SCARG(uap, parms)), retval);
+		break;
+	default:
+		error = EINVAL;
+		break;
 	}
 	return error;
 }

Reply via email to