From 8ff8b8d9b89466c8a9411414b0f03f2638b18809 Mon Sep 17 00:00:00 2001 From: drahn Date: Fri, 30 Apr 2021 00:25:52 +0000 Subject: [PATCH] Fix line swap resulting in misplaced ',' causing build error. --- sys/arch/riscv64/include/ieeefp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/riscv64/include/ieeefp.h b/sys/arch/riscv64/include/ieeefp.h index f64ce9dc19e..241803a8d2a 100644 --- a/sys/arch/riscv64/include/ieeefp.h +++ b/sys/arch/riscv64/include/ieeefp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieeefp.h,v 1.2 2021/04/29 17:19:18 kettenis Exp $ */ +/* $OpenBSD: ieeefp.h,v 1.3 2021/04/30 00:25:52 drahn Exp $ */ /* * Based on ieeefp.h written by J.T. Conklin, Apr 28, 1995 @@ -17,9 +17,9 @@ typedef int fp_except; typedef enum { FP_RN=0, /* round to nearest representable number */ - FP_RZ=1 /* round to zero (truncate) */ + FP_RZ=1, /* round to zero (truncate) */ FP_RM=2, /* round toward negative infinity */ - FP_RP=3, /* round toward positive infinity */ + FP_RP=3 /* round toward positive infinity */ } fp_rnd; #endif /* _MACHINE_IEEEFP_H_ */ -- 2.20.1