diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2017-04-07 04:48:45 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2017-04-07 04:48:45 +0000 |
commit | ee3821f7c67b67961d4ef1ea1f6f89b5f2f4b161 (patch) | |
tree | 13a6b9b1644a5fca892724c4024024ae211de9d9 /sys | |
parent | 03d6137710fc88a1dd5d0d801e1be5a803ae8202 (diff) |
si_addr should be of type void *, not char *
From Andrew Aldridge (i80and(at)foxquill.com)
ok millert@ mpi@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/siginfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/siginfo.h b/sys/sys/siginfo.h index 814e8f20b26..dd6b32f39ab 100644 --- a/sys/sys/siginfo.h +++ b/sys/sys/siginfo.h @@ -1,4 +1,4 @@ -/* $OpenBSD: siginfo.h,v 1.11 2015/04/14 16:40:46 millert Exp $ */ +/* $OpenBSD: siginfo.h,v 1.12 2017/04/07 04:48:44 guenther Exp $ */ /* * Copyright (c) 1997 Theo de Raadt @@ -150,7 +150,7 @@ typedef struct { } _pdata; } _proc; struct { /* SIGSEGV, SIGBUS, SIGILL and SIGFPE */ - caddr_t _addr; /* faulting address */ + void *_addr; /* faulting address */ int _trapno; /* illegal trap number */ } _fault; #if 0 |