From mboxrd@z Thu Jan 1 00:00:00 1970 From: "H. Peter Anvin" Subject: Re: [PATCH 01/24] types: create Date: Fri, 25 Apr 2008 12:48:12 -0700 Message-ID: <4812357C.5010904@zytor.com> References: <1209078352-7593-1-git-send-email-hpa@zytor.com> <1209078352-7593-2-git-send-email-hpa@zytor.com> <1209078352-7593-3-git-send-email-hpa@zytor.com> <20080425185251.GL14990@parisc-linux.org> <48122CB0.7020003@zytor.com> <20080425192858.GM14990@parisc-linux.org> <48123325.30003@zytor.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-arch-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: To: Linus Torvalds Cc: Matthew Wilcox , Jan Engelhardt , Andrew Morton , Linux Kernel Mailing List , Linux Arch Mailing List Linus Torvalds wrote: > > On Fri, 25 Apr 2008, H. Peter Anvin wrote: >> I have to admit to liking the Windows extension %I64u for this kind of stuff. >> Unfortunately gcc/glibc decided to use I for internationalized digits instead >> :( > > The sad part is that this is purely a gcc thing. We could easily do the > right thing in the kernel vsnprintf stuff, but then we'd have to drop the > nice format warnings from gcc ;( > Yes, that's the fundamental problem. There isn't even a flag for gcc to set this behaviour, with the result that any code compiled with MinGW (gcc for Win32) spews warnings like crazy. -hpa From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from terminus.zytor.com ([198.137.202.10]:50010 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753333AbYDYTsV (ORCPT ); Fri, 25 Apr 2008 15:48:21 -0400 Message-ID: <4812357C.5010904@zytor.com> Date: Fri, 25 Apr 2008 12:48:12 -0700 From: "H. Peter Anvin" MIME-Version: 1.0 Subject: Re: [PATCH 01/24] types: create References: <1209078352-7593-1-git-send-email-hpa@zytor.com> <1209078352-7593-2-git-send-email-hpa@zytor.com> <1209078352-7593-3-git-send-email-hpa@zytor.com> <20080425185251.GL14990@parisc-linux.org> <48122CB0.7020003@zytor.com> <20080425192858.GM14990@parisc-linux.org> <48123325.30003@zytor.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-arch-owner@vger.kernel.org List-ID: To: Linus Torvalds Cc: Matthew Wilcox , Jan Engelhardt , Andrew Morton , Linux Kernel Mailing List , Linux Arch Mailing List Message-ID: <20080425194812.mlfQukINHoTub_5VrYxPsMOpuqntOvep5knKdegjbyM@z> Linus Torvalds wrote: > > On Fri, 25 Apr 2008, H. Peter Anvin wrote: >> I have to admit to liking the Windows extension %I64u for this kind of stuff. >> Unfortunately gcc/glibc decided to use I for internationalized digits instead >> :( > > The sad part is that this is purely a gcc thing. We could easily do the > right thing in the kernel vsnprintf stuff, but then we'd have to drop the > nice format warnings from gcc ;( > Yes, that's the fundamental problem. There isn't even a flag for gcc to set this behaviour, with the result that any code compiled with MinGW (gcc for Win32) spews warnings like crazy. -hpa