From: deraadt Date: Mon, 10 May 2021 14:54:14 +0000 (+0000) Subject: sigfillsiz is int, not long; ok kettenis X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6d3248e8c57467cff88653245a001395159c238e;p=openbsd sigfillsiz is int, not long; ok kettenis --- diff --git a/sys/arch/riscv64/riscv64/locore.S b/sys/arch/riscv64/riscv64/locore.S index cae762aeb65..2b90c27ee52 100644 --- a/sys/arch/riscv64/riscv64/locore.S +++ b/sys/arch/riscv64/riscv64/locore.S @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.S,v 1.2 2021/05/10 05:58:19 jsg Exp $ */ +/* $OpenBSD: locore.S,v 1.3 2021/05/10 14:54:14 deraadt Exp $ */ /*- * Copyright (c) 2012-2014 Andrew Turner * All rights reserved. @@ -296,7 +296,7 @@ esigfill: .globl sigfillsiz sigfillsiz: .data - .quad esigfill - sigfill + .word esigfill - sigfill .text ENTRY(sigcode)