summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-09-05 18:46:30 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-09-05 18:46:30 +0000
commit122c7a3a27f526027d0819ea1e598535b8182d26 (patch)
tree85675de6ecd32fef0ba7c6b02d1924b6c6dbbdad
parent4b99eb2362b274db858a124e0abe1a86876d6e5f (diff)
change e_spare back to a long.
-rw-r--r--sys/sys/sysctl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 22afe3221e4..d4574bb57dd 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.h,v 1.15 1997/09/03 13:51:09 kstailey Exp $ */
+/* $OpenBSD: sysctl.h,v 1.16 1997/09/05 18:46:29 kstailey Exp $ */
/* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */
/*
@@ -219,7 +219,7 @@ struct kinfo_proc {
char e_login[MAXLOGNAME]; /* setlogin() name */
#define EMULNAMELEN 7
char e_emul[EMULNAMELEN+1]; /* syscall emulation name */
- int32_t e_spare[2];
+ long e_spare[2];
} kp_eproc;
};