Re: [PATCH] spl: add %z support for tiny-printf

2022-02-14 Thread Sean Anderson
On 2/14/22 10:52 AM, Tom Rini wrote: > On Mon, Feb 14, 2022 at 08:04:35PM +0800, Du Huanpeng wrote: > >> the %zx format are used in spl from files below: >> lib/lzma/LzmaTools.c >> common/malloc_simple.c >> >> it results output like "... 0xx", "size=x" output, >> treat '%z' as '%l' to supp

Re: [PATCH] spl: add %z support for tiny-printf

2022-02-14 Thread Tom Rini
On Mon, Feb 14, 2022 at 08:04:35PM +0800, Du Huanpeng wrote: > the %zx format are used in spl from files below: > lib/lzma/LzmaTools.c > common/malloc_simple.c > > it results output like "... 0xx", "size=x" output, > treat '%z' as '%l' to support `ssize_t' type. > > Signed-off-by: Du Huanpen