Re: [U-Boot] [PATCH 05/15] lib: vsprintf: correct printing of Unicode strings

2018-08-26 Thread Alexander Graf
On 26.08.18 20:34, Heinrich Schuchardt wrote: > On 08/26/2018 08:05 PM, Alexander Graf wrote: >> >> >> On 11.08.18 17:28, Heinrich Schuchardt wrote: >>> The width and precision of the printf() function refer to the number of >>> characters not to the number of bytes printed. >>> >>>

Re: [U-Boot] [PATCH 05/15] lib: vsprintf: correct printing of Unicode strings

2018-08-26 Thread Heinrich Schuchardt
On 08/26/2018 08:05 PM, Alexander Graf wrote: > > > On 11.08.18 17:28, Heinrich Schuchardt wrote: >> The width and precision of the printf() function refer to the number of >> characters not to the number of bytes printed. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> lib/vsprintf.c | 22

Re: [U-Boot] [PATCH 05/15] lib: vsprintf: correct printing of Unicode strings

2018-08-26 Thread Alexander Graf
On 11.08.18 17:28, Heinrich Schuchardt wrote: > The width and precision of the printf() function refer to the number of > characters not to the number of bytes printed. > > Signed-off-by: Heinrich Schuchardt > --- > lib/vsprintf.c | 22 +- > 1 file changed, 13

[U-Boot] [PATCH 05/15] lib: vsprintf: correct printing of Unicode strings

2018-08-11 Thread Heinrich Schuchardt
The width and precision of the printf() function refer to the number of characters not to the number of bytes printed. Signed-off-by: Heinrich Schuchardt --- lib/vsprintf.c | 22 +- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/lib/vsprintf.c