From 0bd2710512e22039f4b7a20673dfbe90de82407c Mon Sep 17 00:00:00 2001
From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
Date: Tue, 14 Apr 2015 16:16:11 +0000
Subject: [PATCH] otrx: use %zd to fix printf format warnings
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>

SVN-Revision: 45436
---
 package/utils/otrx/src/otrx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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;
 	}
-- 
2.30.2