From: rmilecki Date: Tue, 14 Apr 2015 16:16:11 +0000 (+0000) Subject: otrx: use %zd to fix printf format warnings X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=a278c9f83bf957f18c2799a2c51c6db32a53ac76;p=openwrt.git otrx: use %zd to fix printf format warnings Signed-off-by: Rafał Miłecki git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45436 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/utils/otrx/src/otrx.c b/package/utils/otrx/src/otrx.c index 7fe4ba6f69..e42aacaf0e 100644 --- a/package/utils/otrx/src/otrx.c +++ b/package/utils/otrx/src/otrx.c @@ -175,7 +175,7 @@ static int otrx_check() { buf = malloc(length); if (!buf) { - fprintf(stderr, "Couldn't alloc %d B buffer\n", length); + fprintf(stderr, "Couldn't alloc %zd B buffer\n", length); err = -ENOMEM; goto err_close; } @@ -183,7 +183,7 @@ static int otrx_check() { fseek(trx, trx_offset, SEEK_SET); bytes = fread(buf, 1, length, trx); if (bytes != length) { - fprintf(stderr, "Couldn't read %d B of data from %s\n", length, trx_path); + fprintf(stderr, "Couldn't read %zd B of data from %s\n", length, trx_path); err = -ENOMEM; goto err_free_buf; }