From f3244ebbe9df35e50d478702285cc91032f9d5bf Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 09 2020 08:17:52 +0000 Subject: Apply patch bash-4.2-size_type.patch patch_name: bash-4.2-size_type.patch present_in_specfile: true location_in_specfile: 41 --- diff --git a/variables.h b/variables.h index 25c9ae0..be3aebc 100644 --- a/variables.h +++ b/variables.h @@ -95,8 +95,8 @@ typedef struct variable { typedef struct _vlist { SHELL_VAR **list; - int list_size; /* allocated size */ - int list_len; /* current number of entries */ + size_t list_size; /* allocated size */ + size_t list_len; /* current number of entries */ } VARLIST; /* The various attributes that a given variable can have. */