Blame SOURCES/bash-4.2-size_type.patch

50ece2
diff -up bash-4.2/variables.h.size_type bash-4.2/variables.h
50ece2
--- bash-4.2/variables.h.size_type	2012-11-29 10:33:25.109036844 +0100
50ece2
+++ bash-4.2/variables.h	2012-11-29 10:46:12.718530162 +0100
50ece2
@@ -95,8 +95,8 @@ typedef struct variable {
50ece2
 
50ece2
 typedef struct _vlist {
50ece2
   SHELL_VAR **list;
50ece2
-  int list_size;	/* allocated size */
50ece2
-  int list_len;		/* current number of entries */
50ece2
+  size_t list_size;	/* allocated size */
50ece2
+  size_t list_len;	/* current number of entries */
50ece2
 } VARLIST;
50ece2
 
50ece2
 /* The various attributes that a given variable can have. */