X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fmatch_empty_counter.c;h=799e09d58daacfb594fe55bc6dfd9f320186f507;hp=27817fe5dbde63aaadcc9e2962d00a212c4be7d7;hb=48efd3deb4c9139fd060ff3d289896e9031bcc7c;hpb=0eff2a882a9265fd59d4f7a265c6b6810acb0032 diff --git a/src/match_empty_counter.c b/src/match_empty_counter.c index 27817fe5..799e09d5 100644 --- a/src/match_empty_counter.c +++ b/src/match_empty_counter.c @@ -26,8 +26,8 @@ #include "collectd.h" -#include "common.h" #include "filter_chain.h" +#include "utils/common/common.h" /* * internal helper functions @@ -73,9 +73,9 @@ static int mec_match(__attribute__((unused)) const data_set_t *ds, /* {{{ */ } /* }}} int mec_match */ void module_register(void) { - fc_register_match( - "empty_counter", - (match_proc_t){ - .create = mec_create, .destroy = mec_destroy, .match = mec_match, - }); + fc_register_match("empty_counter", (match_proc_t){ + .create = mec_create, + .destroy = mec_destroy, + .match = mec_match, + }); } /* module_register */