From 8155a66e32e778c778c47511840ddce1ca48b1d8 Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Thu, 24 Nov 2016 13:43:39 +0100 Subject: [PATCH] unsigned correction Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- compiler2/record.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler2/record.c b/compiler2/record.c index 4ca4d60d9..689582b4d 100644 --- a/compiler2/record.c +++ b/compiler2/record.c @@ -100,7 +100,7 @@ void set_raw_options(const struct_def *sdef, struct raw_option_struct *raw_options, boolean *haslengthto, boolean *haspointer, boolean *hascrosstag, boolean *has_ext_bit) { - int i; + size_t i; for (i = 0; i < sdef->nElements; i++) { raw_options[i].lengthto = FALSE; raw_options[i].lengthof = 0; @@ -7169,7 +7169,7 @@ void defRecordTemplate2(const struct_def *sdef, output_struct *output) /* list_item(int) function */ def = mputprintf(def, - "inline %s_template& list_item(unsigned int list_index) const " + "inline %s_template& list_item(int list_index) const " "{ return *(static_cast<%s_template*>(get_list_item(list_index))); }\n", name, name); if (sdef->nElements>0) { -- GitLab