src/utils_latency{,_config}.[ch]: Reformat new code with clang-format.
[collectd.git] / src / utils_latency_config.h
index aad8914..a535496 100644 (file)
 #include "collectd.h"
 #include "utils_time.h"
 
-struct latency_config_s
-{
-  double   *percentile;
-  size_t   percentile_num;
-  char     *percentile_type;
+struct latency_config_s {
+  double *percentile;
+  size_t percentile_num;
+  char *percentile_type;
   cdtime_t *rates;
-  size_t   rates_num;
-  char     *rates_type;
-  _Bool    lower;
-  _Bool    upper;
+  size_t rates_num;
+  char *rates_type;
+  _Bool lower;
+  _Bool upper;
   //_Bool sum;
-  _Bool    avg;
+  _Bool avg;
   //_Bool count;
 };
 typedef struct latency_config_s latency_config_t;