X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fxencpu.c;h=f1cd938810ac80b1640004ff98916e349a4b8229;hb=448627953cde2f7b3b138f53f4f2c62f0d48b726;hp=2b87235025d09f357e3078ae739b5eef34e3dcf4;hpb=d67b510b1ec7c17b6e1f65e40b8d8fdb2f33c857;p=collectd.git diff --git a/src/xencpu.c b/src/xencpu.c index 2b872350..f1cd9388 100644 --- a/src/xencpu.c +++ b/src/xencpu.c @@ -20,6 +20,7 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" @@ -53,7 +54,7 @@ static int xencpu_init (void) { ERROR ("xencpu: xc_interface_open() failed"); return (-1); - }; + } xc_physinfo_t *physinfo; @@ -71,7 +72,7 @@ static int xencpu_init (void) xc_interface_close(xc_handle); free(physinfo); return (-1); - }; + } num_cpus = physinfo->nr_cpus; free(physinfo); @@ -141,8 +142,8 @@ static int xencpu_read (void) return (-1); } - int cpu, status; - for (cpu = 0; cpu < nr_cpus; cpu++) { + int status; + for (int cpu = 0; cpu < nr_cpus; cpu++) { gauge_t rate = NAN; value_t value = {.derive = cpu_info[cpu].idletime};