Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 May 2012 22:57:24 +0300
From:      Andriy Gapon <avg@FreeBSD.org>
To:        Pawel Jakub Dawidek <pjd@FreeBSD.org>
Cc:        svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org, Xin LI <delphij@FreeBSD.org>
Subject:   Re: svn commit: r235852 - head/sys/geom
Message-ID:  <4FBD4124.5030205@FreeBSD.org>
In-Reply-To: <20120523192232.GA1399@garage.freebsd.pl>
References:  <201205231817.q4NIH2t7088267@svn.freebsd.org> <20120523192232.GA1399@garage.freebsd.pl>

next in thread | previous in thread | raw e-mail | index | archive | help
on 23/05/2012 22:22 Pawel Jakub Dawidek said the following:
> On Wed, May 23, 2012 at 06:17:02PM +0000, Xin LI wrote:
>> Author: delphij Date: Wed May 23 18:17:02 2012 New Revision: 235852 URL:
>> http://svn.freebsd.org/changeset/base/235852
>> 
>> Log: Use %ju to match uintmax_t usage
>> 
>> Modified: head/sys/geom/geom_flashmap.c
>> 
>> Modified: head/sys/geom/geom_flashmap.c 
>> ==============================================================================
>>
>> 
--- head/sys/geom/geom_flashmap.c	Wed May 23 18:11:36 2012	(r235851)
>> +++ head/sys/geom/geom_flashmap.c	Wed May 23 18:17:02 2012	(r235852) @@
>> -78,7 +78,7 @@ static void g_flashmap_print(struct g_flashmap_slice
>> *slice) {
>> 
>> -	printf("%08jx-%08jx: %s (%lluKB)\n", (intmax_t)slice->sl_start,
>> (intmax_t)slice->sl_end, +	printf("%08jx-%08jx: %s (%juKB)\n",
>> (intmax_t)slice->sl_start, (intmax_t)slice->sl_end, slice->sl_name,
>> (uintmax_t)(slice->sl_end - slice->sl_start) / 1024);
> 
> BTW, %jx is also uintmax_t, not intmax_t, right?
> 

I think that non-decimal representation generally implies unsigned-ness.

-- 
Andriy Gapon



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