summaryrefslogtreecommitdiffstats
path: root/lib/typesafe.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2019-09-30 18:44:43 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2019-09-30 18:44:43 +0200
commitc258527bd2475234a67b8335b622ad57eec0bc7e (patch)
tree245bec30402003d529f51d034857f27df6fbbda3 /lib/typesafe.c
parentMerge pull request #5060 from chiragshah6/evpn_dev2 (diff)
downloadfrr-c258527bd2475234a67b8335b622ad57eec0bc7e.tar.xz
frr-c258527bd2475234a67b8335b622ad57eec0bc7e.zip
*: strip trailing whitespace
Some of it has snuck by CI Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
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 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;