mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
Merge pull request #3264 from ianyfan/resize-list
list: double list capacity when resizing instead of incrementing
This commit is contained in:
commit
e7efa0e27b
|
@ -17,7 +17,7 @@ list_t *create_list(void) {
|
||||||
|
|
||||||
static void list_resize(list_t *list) {
|
static void list_resize(list_t *list) {
|
||||||
if (list->length == list->capacity) {
|
if (list->length == list->capacity) {
|
||||||
list->capacity += 10;
|
list->capacity *= 2;
|
||||||
list->items = realloc(list->items, sizeof(void*) * list->capacity);
|
list->items = realloc(list->items, sizeof(void*) * list->capacity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue