From c258527bd2475234a67b8335b622ad57eec0bc7e Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 30 Sep 2019 16:44:43 +0000 Subject: *: strip trailing whitespace Some of it has snuck by CI Signed-off-by: Quentin Young --- lib/typesafe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/typesafe.c') diff --git a/lib/typesafe.c b/lib/typesafe.c index 7e5939d5b..6635cf750 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; -- cgit v1.2.3