Re: [U-Boot] [PATCH 1/1] tools: imx8image: use correct printf escape sequence

2019-01-28 Thread Stefano Babic
On 02/01/19 20:11, Heinrich Schuchardt wrote: > On 12/17/18 10:22 AM, Heinrich Schuchardt wrote: >> core is of type uint64_t. So for printing we need "%"PRIu64 (not "%lu"). >> >> Without the patch a warning is issued when building on a 32bit system. >> >> Signed-off-by: Heinrich Schuchardt >> ---

Re: [U-Boot] [PATCH 1/1] tools: imx8image: use correct printf escape sequence

2019-01-02 Thread Heinrich Schuchardt
On 12/17/18 10:22 AM, Heinrich Schuchardt wrote: > core is of type uint64_t. So for printing we need "%"PRIu64 (not "%lu"). > > Without the patch a warning is issued when building on a 32bit system. > > Signed-off-by: Heinrich Schuchardt > --- > tools/imx8image.c | 7 +-- > 1 file changed,

[U-Boot] [PATCH 1/1] tools: imx8image: use correct printf escape sequence

2018-12-17 Thread Heinrich Schuchardt
core is of type uint64_t. So for printing we need "%"PRIu64 (not "%lu"). Without the patch a warning is issued when building on a 32bit system. Signed-off-by: Heinrich Schuchardt --- tools/imx8image.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/imx8image.c b