diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-19 22:03:17 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-19 22:03:17 +0000 |
commit | 275729f55ecc22424d81616ed7cd57b6510506a2 (patch) | |
tree | bc4de0345d80f5407e04b969442e73e256db8c8a /sys/compat | |
parent | 5bd91028999a9fcfda647fe1cc5f454ea9c97aad (diff) |
another long that is really u_int
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/hpux/hpux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/hpux/hpux.h b/sys/compat/hpux/hpux.h index 7dd8e52f954..da651d92d89 100644 --- a/sys/compat/hpux/hpux.h +++ b/sys/compat/hpux/hpux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux.h,v 1.13 2004/07/11 01:15:51 mickey Exp $ */ +/* $OpenBSD: hpux.h,v 1.14 2004/09/19 22:03:16 mickey Exp $ */ /* $NetBSD: hpux.h,v 1.11 1997/04/01 19:58:58 scottr Exp $ */ /* @@ -264,7 +264,7 @@ struct hpux_shmid_ds { #define HPUX_FPE_INTDIV_TRAP 5 /* T_ZERODIV+USER */ /* HP-UX POSIX signal stuff implementation */ -typedef struct __hpux_sigset_t { long sigset[8]; } hpux_sigset_t; +typedef struct __hpux_sigset_t { u_int sigset[8]; } hpux_sigset_t; struct hpux_sigaction { void (*sa__handler)(int); hpux_sigset_t sa_mask; |