From: guenther Date: Fri, 20 Jul 2018 01:30:30 +0000 (+0000) Subject: Missed a 'ksi' -> '*ksip' change in previous commit X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0754706bb19b3959782fb0911c800fad61a7c773;p=openbsd Missed a 'ksi' -> '*ksip' change in previous commit --- diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c index 1a3b3bd35d2..659f6d8772b 100644 --- a/sys/arch/hppa/hppa/machdep.c +++ b/sys/arch/hppa/hppa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.253 2018/07/10 04:19:59 guenther Exp $ */ +/* $OpenBSD: machdep.c,v 1.254 2018/07/20 01:30:30 guenther Exp $ */ /* * Copyright (c) 1999-2003 Michael Shalayeff @@ -1224,7 +1224,7 @@ sendsig(sig_t catcher, int sig, sigset_t mask, const siginfo_t *ksip) sip = 0; if (psp->ps_siginfo & sigmask(sig)) { sip = scp + sizeof(ksc); - sss += (sizeof(ksi) + 63) & ~63; + sss += (sizeof(*ksip) + 63) & ~63; } bzero(&ksc, sizeof(ksc));