From 21a521f82bb5f66e754a253fedbad650f12b5e18 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 15 Oct 2017 21:11:31 +0200 Subject: [PATCH] Avoid a compilation warning --- src/format/dex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format/dex.c b/src/format/dex.c index 42165ad..ef9394b 100644 --- a/src/format/dex.c +++ b/src/format/dex.c @@ -400,7 +400,7 @@ static int _dex_decode_section(Dex * dex, AsmSection * section, { AsmFormatPluginHelper * helper = dex->helper; DexMapCodeItem dmci; - size_t i; + ssize_t i; off_t seek; AsmFunction * f; size_t j;