diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-01-24 22:44:01 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-02-09 22:13:18 +0100 |
commit | 11bc41c32cc933a141545be6a9729122ac436cfe (patch) | |
tree | 5b599fd6061fbe1c43ae24a272b6e98c0b619ad9 /tests/ubi-tests/io_update.c | |
parent | 42e051acd32c28c2f93c946d0c4bf6f9eada2aa4 (diff) |
mtd-utils: Fix printf format specifiers with the wrong type
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/ubi-tests/io_update.c')
-rw-r--r-- | tests/ubi-tests/io_update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ubi-tests/io_update.c b/tests/ubi-tests/io_update.c index f48df1d..d093da5 100644 --- a/tests/ubi-tests/io_update.c +++ b/tests/ubi-tests/io_update.c @@ -189,11 +189,11 @@ static int test_update1(struct ubi_vol_info *vol_info, int leb_change) ret = read(fd, buf1, test_len); if (ret < 0) { failed("read"); - errorm("failed to read %d bytes", test_len); + errorm("failed to read %lld bytes", test_len); goto close; } if (ret != test_len) { - errorm("failed to read %d bytes, read %d", test_len, ret); + errorm("failed to read %lld bytes, read %d", test_len, ret); goto close; } if (memcmp(buf, buf1, test_len)) { |