mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] vsprintf: fix gcc warning
@ 2008-07-07 19:24 Vegard Nossum
  2008-07-07 19:54 ` Linus Torvalds
  0 siblings, 1 reply; 3+ messages in thread
From: Vegard Nossum @ 2008-07-07 19:24 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Hi :)

Does this look correct? Please disregard this if it has already
been fixed. Thanks.


Vegard

From: Vegard Nossum <vegard.nossum@gmail.com>
Date: Mon, 7 Jul 2008 21:08:57 +0200
Subject: [PATCH] vsprintf: fix gcc warning

The patch

commit bf4bb495e5dc8f1abba98bb6cb08b2d94446a662
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Sat Jul 5 22:37:13 2008 -0700

    printk: add support for '%pS'

introduced a new build warning from GCC (4.1.2):

  CC      lib/vsprintf.o
lib/vsprintf.c: In function `pointer':
lib/vsprintf.c:560: warning: cast from pointer to integer of different size

Whether the warning is useful or not is a discussion on its own. But
we can at least fix this by casting to 'unsigned long' instead of
'unsigned long long'. 'unsigned long' can hold a pointer and will be
converted implicitly to the right type upon calling the function.

Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
---
 lib/vsprintf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index f60c7c0..39b6172 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -557,7 +557,7 @@ static char *pointer(const char *fmt, char *buf, char *end, void *ptr, int base,
 		precision = 2*sizeof(void *);
 		type |= ZEROPAD;
 	}
-	return number(buf, end, (unsigned long long) ptr, base, size, precision, type);
+	return number(buf, end, (unsigned long) ptr, base, size, precision, type);
 }
 
 /**
-- 
1.5.4.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] vsprintf: fix gcc warning
  2008-07-07 19:24 [PATCH] vsprintf: fix gcc warning Vegard Nossum
@ 2008-07-07 19:54 ` Linus Torvalds
  2008-07-07 20:00   ` Vegard Nossum
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2008-07-07 19:54 UTC (permalink / raw)
  To: Vegard Nossum; +Cc: linux-kernel



On Mon, 7 Jul 2008, Vegard Nossum wrote:
> 
> Does this look correct? Please disregard this if it has already
> been fixed. Thanks.

Looks fine. But the series I eventually committed avoided this issue, so 
please double-check current -git.

		Linus

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] vsprintf: fix gcc warning
  2008-07-07 19:54 ` Linus Torvalds
@ 2008-07-07 20:00   ` Vegard Nossum
  0 siblings, 0 replies; 3+ messages in thread
From: Vegard Nossum @ 2008-07-07 20:00 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

On Mon, Jul 7, 2008 at 9:54 PM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
>
> On Mon, 7 Jul 2008, Vegard Nossum wrote:
>>
>> Does this look correct? Please disregard this if it has already
>> been fixed. Thanks.
>
> Looks fine. But the series I eventually committed avoided this issue, so
> please double-check current -git.

Oh, you're right. I was compiling/looking at tip/master which had your
old version. Sorry for the noise!


Vegard

-- 
"The animistic metaphor of the bug that maliciously sneaked in while
the programmer was not looking is intellectually dishonest as it
disguises that the error is the programmer's own creation."
	-- E. W. Dijkstra, EWD1036

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-07 20:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-07 19:24 [PATCH] vsprintf: fix gcc warning Vegard Nossum
2008-07-07 19:54 ` Linus Torvalds
2008-07-07 20:00   ` Vegard Nossum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®