]> www.infradead.org Git - mtd-utils.git/commit
mtd-utils: Instead of doing preprocessor magic, just output off_t as long long
authorThorsten Glaser <tg@mirbsd.org>
Thu, 20 Sep 2018 23:22:11 +0000 (01:22 +0200)
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Tue, 2 Oct 2018 12:00:28 +0000 (14:00 +0200)
commit64667fe63ba9dd78adb9c4abf04bc3e4e25a0fd7
tree3b357842ca9b9411cff5e2df7db45aac1e838e2c
parent38a6e3e29d90e11c3d5147e609d7b8e021b2cabf
mtd-utils: Instead of doing preprocessor magic, just output off_t as long long

Fix warnings abot PRIdoff_t in libmtd.c, in mtd_read (and mtd_write):

In file included from ../git/lib/libmtd.c:40:0:
../git/lib/libmtd.c: In function 'mtd_read':
../git/include/common.h:110:18: warning: format '%ld' expects argument of
 type 'long int', but argument 5 has type 'off_t {aka long long int}'
 [-Wformat=]

../git/include/common.h:120:2: note: in expansion of macro 'errmsg'
  errmsg(fmt, ##__VA_ARGS__);                                         \
  ^~~~~~
../git/lib/libmtd.c:1082:10: note: in expansion of macro 'sys_errmsg'
   return sys_errmsg("cannot seek mtd%d to offset %"PRIdoff_t,
          ^~~~~~~~~~

/usr/lib/klibc/include/inttypes.h:28:17: note: format string is defined here
 #define PRId32 "d"

Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
12 files changed:
include/common.h
jffsX-utils/mkfs.jffs2.c
lib/libmtd.c
misc-utils/flash_erase.c
misc-utils/flash_otp_write.c
misc-utils/ftl_check.c
misc-utils/mtd_debug.c
misc-utils/serve_image.c
tests/fs-tests/integrity/integck.c
tests/mtd-tests/nandpagetest.c
tests/ubi-tests/integ.c
ubifs-utils/mkfs.ubifs/mkfs.ubifs.c