From 43a8964fe75b348c93c43bb27b00cced91d448aa Mon Sep 17 00:00:00 2001
From: Steffen Vogel <post@steffenvogel.de>
Date: Sun, 5 Jul 2020 11:32:25 +0200
Subject: [PATCH] whitespace cleanup

---
 lib/formats/villas_human.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/formats/villas_human.cpp b/lib/formats/villas_human.cpp
index 466ccd84f..9cb60d6c9 100644
--- a/lib/formats/villas_human.cpp
+++ b/lib/formats/villas_human.cpp
@@ -225,7 +225,7 @@ void villas_human_header(struct io *io, const struct sample *smp)
 
 static struct plugin p;
 __attribute__((constructor(110))) static void UNIQUE(__ctor)() {
-        p.name = "villas.human";
+	p.name = "villas.human";
 	p.description = "VILLAS human readable format";
 	p.type = PluginType::FORMAT;
 	p.format.header = villas_human_header;
@@ -236,9 +236,9 @@ __attribute__((constructor(110))) static void UNIQUE(__ctor)() {
 	p.format.delimiter = '\n';
 	p.format.separator = '\t';
 
-        vlist_push(&plugins, &p);
+	vlist_push(&plugins, &p);
 }
 
 __attribute__((destructor(110))) static void UNIQUE(__dtor)() {
-        vlist_remove_all(&plugins, &p);
+	vlist_remove_all(&plugins, &p);
 }