More autoconf work
[collectd.git] / src / multimeter.c
index da1a8c8..93ab3d2 100644 (file)
@@ -27,8 +27,7 @@
 #include "common.h"
 #include "plugin.h"
 
-#if HAVE_TERMIOS_H && HAVE_SYS_IOCTL_H && HAVE_MATH_H
-#include <math.h>
+#if HAVE_TERMIOS_H && HAVE_SYS_IOCTL_H
 #include <sys/ioctl.h>
 #include <termios.h>
 #else
@@ -185,14 +184,10 @@ static int multimeter_init(void) {
 #undef LINE_LENGTH
 
 static void multimeter_submit(double value) {
-  value_t values[1];
   value_list_t vl = VALUE_LIST_INIT;
 
-  values[0].gauge = value;
-
-  vl.values = values;
+  vl.values = &(value_t){.gauge = value};
   vl.values_len = 1;
-  sstrncpy(vl.host, hostname_g, sizeof(vl.host));
   sstrncpy(vl.plugin, "multimeter", sizeof(vl.plugin));
   sstrncpy(vl.type, "multimeter", sizeof(vl.type));