Re: [U-Boot] PATCH-add 0X hexadecimal prefix to simple_strtoul

2011-02-09 Thread Scott Wood
On Wed, 9 Feb 2011 07:40:44 +0100 Albert ARIBAUD albert.arib...@free.fr wrote: Le 09/02/2011 07:19, Chris Moore a écrit : I also noticed this in some of my (rare) posts. I am using TB 3.1.5. I am too ashamed to admit my OS ;-) A nonsense test case written with correct spacing: a = (b

[U-Boot] PATCH-add 0X hexadecimal prefix to simple_strtoul

2011-02-08 Thread Rob Alexander
Added support to simple_strtoul to support the standard 0X hex notation. This issue was causing operational bug in U-boot console commands where 0X hex numbers were being misinterpreted as decimal. Signed-off-by: Rob Alexanderrobert.b.alexan...@motorola.com --- vsprintf.org.c 2011-02-08

Re: [U-Boot] PATCH-add 0X hexadecimal prefix to simple_strtoul

2011-02-08 Thread Wolfgang Denk
Dear Rob Alexander, In message 4d51716d.3060...@motorola.com you wrote: Added support to simple_strtoul to support the standard 0X hex notation. This issue was causing operational bug in U-boot console commands where 0X hex numbers were being misinterpreted as decimal. Can you please

Re: [U-Boot] PATCH-add 0X hexadecimal prefix to simple_strtoul

2011-02-08 Thread Chris Moore
Hi, Le 08/02/2011 20:14, Wolfgang Denk a écrit : Dear Rob Alexander, In message4d51716d.3060...@motorola.com you wrote: +if ((tolower(*cp) == 'x') isxdigit(cp[1])) { ERROR: spaces required around that '' (ctx:VxW) I suspect that this could be the Thunderbird problem that

Re: [U-Boot] PATCH-add 0X hexadecimal prefix to simple_strtoul

2011-02-08 Thread Albert ARIBAUD
Le 09/02/2011 07:19, Chris Moore a écrit : Hi, Le 08/02/2011 20:14, Wolfgang Denk a écrit : Dear Rob Alexander, In message4d51716d.3060...@motorola.com you wrote: + if ((tolower(*cp) == 'x') isxdigit(cp[1])) { ERROR: spaces required around that '' (ctx:VxW) I suspect that this could be