From 6d3248e8c57467cff88653245a001395159c238e Mon Sep 17 00:00:00 2001 From: deraadt Date: Mon, 10 May 2021 14:54:14 +0000 Subject: [PATCH] sigfillsiz is int, not long; ok kettenis --- sys/arch/riscv64/riscv64/locore.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.20.1