summaryrefslogtreecommitdiff
path: root/array.h
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2020-11-17 14:18:49 -0500
committerChet Ramey <chet.ramey@case.edu>2020-11-17 14:18:49 -0500
commit37b22abee700eb1b0c5b6926ab32630a429c1183 (patch)
tree01d22efef9babf0127776b6b3c4387b03dc629ab /array.h
parent278db80c368700ed6117fbd390c89a9b44c0240c (diff)
downloadbash-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.h b/array.h
index fe218470..189d646f 100644
--- a/array.h
+++ b/array.h
@@ -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 {