summaryrefslogtreecommitdiff
path: root/pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch')
-rw-r--r--pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch b/pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch
new file mode 100644
index 00000000..ea4ca5a9
--- /dev/null
+++ b/pkg/zfs/patch/0008-Avoid-use-of-long-double-function.patch
@@ -0,0 +1,34 @@
+From 36c4199b3392557bffc375444696bdc6ec36ebae Mon Sep 17 00:00:00 2001
+From: Michael Forney <mforney@mforney.org>
+Date: Sat, 21 Jan 2023 17:30:39 -0800
+Subject: [PATCH] Avoid use of long double function
+
+---
+ lib/libzutil/zutil_nicenum.c | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lib/libzutil/zutil_nicenum.c b/lib/libzutil/zutil_nicenum.c
+index 4dcac1f85..5bde425f4 100644
+--- a/lib/libzutil/zutil_nicenum.c
++++ b/lib/libzutil/zutil_nicenum.c
+@@ -102,7 +102,7 @@ zfs_nicenum_format(uint64_t num, char *buf, size_t buflen,
+ if ((format == ZFS_NICENUM_TIME) && (num == 0)) {
+ (void) snprintf(buf, buflen, "-");
+ } else if ((index == 0) || ((num %
+- (uint64_t)powl(k_unit[format], index)) == 0)) {
++ (uint64_t)pow(k_unit[format], index)) == 0)) {
+ /*
+ * If this is an even multiple of the base, always display
+ * without any decimal precision.
+@@ -122,7 +122,7 @@ zfs_nicenum_format(uint64_t num, char *buf, size_t buflen,
+ int i;
+ for (i = 2; i >= 0; i--) {
+ val = (double)num /
+- (uint64_t)powl(k_unit[format], index);
++ (uint64_t)pow(k_unit[format], index);
+
+ /*
+ * Don't print floating point values for time. Note,
+--
+2.37.3
+