aboutsummaryrefslogtreecommitdiff
path: root/cddl/contrib/opensolaris
diff options
context:
space:
mode:
authorSean Bruno <sbruno@FreeBSD.org>2013-11-04 16:15:43 +0000
committerSean Bruno <sbruno@FreeBSD.org>2013-11-04 16:15:43 +0000
commitbf10ab6b9c45ed7ce8a7af4b515bd4249cf3efaf (patch)
tree3d27e315e0898fa02c2446bdcf43d1a5991aa022 /cddl/contrib/opensolaris
parentf827d58e4d6b3bedb7ac517a36baddce01dff502 (diff)
downloadsrc-bf10ab6b9c45ed7ce8a7af4b515bd4249cf3efaf.tar.gz
src-bf10ab6b9c45ed7ce8a7af4b515bd4249cf3efaf.zip
Quiesce warning regarding %llf which has no effect.
Submitted as illumos issue #4284 Reviewed by: delphij
Notes
Notes: svn path=/head/; revision=257638
Diffstat (limited to 'cddl/contrib/opensolaris')
-rw-r--r--cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c b/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c
index 3302ac798fd2..7a265bdc39d4 100644
--- a/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c
+++ b/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c
@@ -210,7 +210,7 @@ NVLIST_PRTFUNC(int32, int32_t, int32_t, "%d")
NVLIST_PRTFUNC(uint32, uint32_t, uint32_t, "0x%x")
NVLIST_PRTFUNC(int64, int64_t, longlong_t, "%lld")
NVLIST_PRTFUNC(uint64, uint64_t, u_longlong_t, "0x%llx")
-NVLIST_PRTFUNC(double, double, double, "0x%llf")
+NVLIST_PRTFUNC(double, double, double, "0x%f")
NVLIST_PRTFUNC(string, char *, char *, "%s")
NVLIST_PRTFUNC(hrtime, hrtime_t, hrtime_t, "0x%llx")