Module Name:    src
Committed By:   pgoyette
Date:           Sat Apr 25 02:41:42 UTC 2015

Modified Files:
        src/sys/dev/sysmon: sysmon_envsys.c

Log Message:
Use tabs for indentation.


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/sys/dev/sysmon/sysmon_envsys.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/dev/sysmon/sysmon_envsys.c
diff -u src/sys/dev/sysmon/sysmon_envsys.c:1.134 src/sys/dev/sysmon/sysmon_envsys.c:1.135
--- src/sys/dev/sysmon/sysmon_envsys.c:1.134	Sat Apr 25 00:54:14 2015
+++ src/sys/dev/sysmon/sysmon_envsys.c	Sat Apr 25 02:41:42 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: sysmon_envsys.c,v 1.134 2015/04/25 00:54:14 pgoyette Exp $	*/
+/*	$NetBSD: sysmon_envsys.c,v 1.135 2015/04/25 02:41:42 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2007, 2008 Juan Romero Pardines.
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sysmon_envsys.c,v 1.134 2015/04/25 00:54:14 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysmon_envsys.c,v 1.135 2015/04/25 02:41:42 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -687,8 +687,8 @@ sysmon_envsys_register(struct sysmon_env
 	mutex_enter(&sme_global_mtx);
 	LIST_FOREACH(lsme, &sysmon_envsys_list, sme_list) {
 	       if (strcmp(lsme->sme_name, sme->sme_name) == 0) {
-		       mutex_exit(&sme_global_mtx);
-		       return EEXIST;
+			mutex_exit(&sme_global_mtx);
+			return EEXIST;
 	       }
 	}
 	mutex_exit(&sme_global_mtx);

Reply via email to