Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2013 16:15:43 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257638 - head/cddl/contrib/opensolaris/lib/libnvpair
Message-ID:  <201311041615.rA4GFhW9040552@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sbruno
Date: Mon Nov  4 16:15:43 2013
New Revision: 257638
URL: http://svnweb.freebsd.org/changeset/base/257638

Log:
  Quiesce warning regarding %llf which has no effect.
  
  Submitted as illumos issue #4284
  
  Reviewed by:	delphij

Modified:
  head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c

Modified: head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c
==============================================================================
--- head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c	Mon Nov  4 15:55:04 2013	(r257637)
+++ head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c	Mon Nov  4 16:15:43 2013	(r257638)
@@ -210,7 +210,7 @@ NVLIST_PRTFUNC(int32, int32_t, int32_t, 
 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")
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311041615.rA4GFhW9040552>