summaryrefslogtreecommitdiff
path: root/sys/kern/exec_conf.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-08-23 19:21:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-08-23 19:21:16 +0000
commit4fbbabf756473e0c78933ad2ec1473f28b7afea0 (patch)
tree0dfcc0ba3a625d75e28f0ad3e853d3309f750d37 /sys/kern/exec_conf.c
parent99570912ab2c91832786972dcb9413f3befd49be (diff)
knf
Diffstat (limited to 'sys/kern/exec_conf.c')
-rw-r--r--sys/kern/exec_conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/exec_conf.c b/sys/kern/exec_conf.c
index 60d92b590d4..6a2a5fc850e 100644
--- a/sys/kern/exec_conf.c
+++ b/sys/kern/exec_conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_conf.c,v 1.13 2003/08/21 18:56:07 tedu Exp $ */
+/* $OpenBSD: exec_conf.c,v 1.14 2003/08/23 19:21:15 deraadt Exp $ */
/* $NetBSD: exec_conf.c,v 1.16 1995/12/09 05:34:47 cgd Exp $ */
/*
@@ -186,8 +186,8 @@ init_exec(void)
*/
if (exec_maxhdrsz == 0) {
for (i = 0; i < nexecs; i++)
- if (execsw[i].es_check != NULL
- && execsw[i].es_hdrsz > exec_maxhdrsz)
+ if (execsw[i].es_check != NULL &&
+ execsw[i].es_hdrsz > exec_maxhdrsz)
exec_maxhdrsz = execsw[i].es_hdrsz;
}
}