From: Simon Glass Date: Sat, 1 Aug 2020 16:30:38 +0000 (-0600) Subject: tools: env: Fix printf() warning in fw_env X-Git-Tag: v2020.10~78^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9cd4d2a8d429068a6a5061a33459ae3ae113ef8;p=platform%2Fkernel%2Fu-boot.git tools: env: Fix printf() warning in fw_env The printf() string produces a warning about %d not matching size_t. Fix it and put the format string on one line to avoid a checkpatch warning. Signed-off-by: Simon Glass --- diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 3ab1ae6..ccbeb55 100644 --- a/tools/env/fw_env.c +++ b/tools/env/fw_env.c @@ -952,8 +952,8 @@ static int flash_read_buf(int dev, int fd, void *buf, size_t count, return -1; } if (rc != readlen) { - fprintf(stderr, "Read error on %s: " - "Attempted to read %d bytes but got %d\n", + fprintf(stderr, + "Read error on %s: Attempted to read %zd bytes but got %d\n", DEVNAME(dev), readlen, rc); return -1; }