1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

whitespace cleanup

This commit is contained in:
Steffen Vogel 2020-07-05 11:32:25 +02:00
parent 9377e313c9
commit 43a8964fe7

View file

@ -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);
}