From 91587a9eed0198cba09cbee5a802a64f0140184b Mon Sep 17 00:00:00 2001 From: guenther Date: Fri, 7 Apr 2017 04:48:44 +0000 Subject: [PATCH] si_addr should be of type void *, not char * From Andrew Aldridge (i80and(at)foxquill.com) ok millert@ mpi@ --- sys/sys/siginfo.h | 4 ++-- 1 file 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 -- 2.20.1