summaryrefslogtreecommitdiff
path: root/lib/typesafe.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/typesafe.c')
-rw-r--r--lib/typesafe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/typesafe.c b/lib/typesafe.c
index 7e5939d5b3..6635cf7506 100644
--- a/lib/typesafe.c
+++ b/lib/typesafe.c
@@ -473,7 +473,7 @@ void typesafe_heap_resize(struct heap_head *head, bool grow)
newsize &= ~(HEAP_NARY - 1);
if (newsize == head->arraysz)
return;
-
+
head->array = XREALLOC(MTYPE_HEAP_ARRAY, head->array,
newsize * sizeof(struct heap_item *));
head->arraysz = newsize;