commit 9ecc16c7829c00559730041b0b12a9ce566c0d27 from: Stefan Sperling date: Tue Sep 22 23:25:19 2020 UTC fix operator-precedence bug in previous commit bf11ce0e commit - bf11ce0ed8ce52b06bf5fb9367e7951e447c8c42 commit + 9ecc16c7829c00559730041b0b12a9ce566c0d27 blob - 9aa063040f234dd19ec987202fad2d6f68260079 blob + 7aaab19f0a58317289881be832a03ec59f67a0ff --- include/diff/arraylist.h +++ include/diff/arraylist.h @@ -63,7 +63,7 @@ (ARRAY_LIST).p = recallocarray((ARRAY_LIST).head, \ (ARRAY_LIST).len, \ (ARRAY_LIST).allocated + \ - (ARRAY_LIST).alloc_blocksize ? : 8, \ + ((ARRAY_LIST).alloc_blocksize ? : 8), \ sizeof(*(ARRAY_LIST).head)); \ if ((ARRAY_LIST).p == NULL) { \ NEW_ITEM_P = NULL; \