From 2a758a80879b8c54515d8fbfa843e49f17394310 Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Thu, 24 Nov 2016 13:43:14 +0100 Subject: [PATCH] temporal_variable_index is always used as a size_t Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- compiler2/ttcn3/rawASTspec.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler2/ttcn3/rawASTspec.h b/compiler2/ttcn3/rawASTspec.h index 2073199be..ade62c2e8 100644 --- a/compiler2/ttcn3/rawASTspec.h +++ b/compiler2/ttcn3/rawASTspec.h @@ -33,7 +33,6 @@ #define XDEFHIGH 2 #define XDEFDEFAULT -1 - typedef struct { int bitorder; /* Invert bitorder of the encoded data */ }rawAST_toplevel; @@ -54,7 +53,7 @@ typedef struct{ rawAST_coding_fields* fields; const char *value; int start_pos; - int temporal_variable_index; + size_t temporal_variable_index; }rawAST_coding_field_list; typedef struct{ -- GitLab