diff options
author | Chet Ramey <chet.ramey@case.edu> | 2020-11-17 14:18:49 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2020-11-17 14:18:49 -0500 |
commit | 37b22abee700eb1b0c5b6926ab32630a429c1183 (patch) | |
tree | 01d22efef9babf0127776b6b3c4387b03dc629ab /array.h | |
parent | 278db80c368700ed6117fbd390c89a9b44c0240c (diff) | |
download | bash-5.1-testing.tar.gz |
Bash-5.1-rc3 releasebash-5.1-rc3bash-5.1-testing
Diffstat (limited to 'array.h')
-rw-r--r-- | array.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,8 +33,8 @@ typedef struct array { enum atype type; arrayind_t max_index; int num_elements; - struct array_element *lastref; struct array_element *head; + struct array_element *lastref; } ARRAY; typedef struct array_element { |