From 3a4b7e326cb2dbfd4c59fdd444e6c06fc3ba8b5c Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 30 Sep 2004 11:20:28 +0000 Subject: [PATCH] fixed unsigned/signed comparison warning git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3677 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/build.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/build.cpp b/Source/build.cpp index 63aae1ed..16c4436a 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -1319,7 +1319,7 @@ int CEXEBuild::resolve_jump_int(const char *fn, int *a, int offs, int start, int for (; jump != 0; jump -= direction) { offs += direction; - if (offs >= 0 && offs < cur_instruction_entry_map->getlen() * sizeof(int)) + if (offs >= 0 && offs < cur_instruction_entry_map->getlen() * (int) sizeof(int)) { while (skip_map[offs]) {