X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_latency.c;h=7a607e430de7112f56c342cf956409eb4c5e1728;hb=65caa4f56cbb859bf1538e8b309eb23b3294c9de;hp=d570ab696166b54e47887b4d1f33b8111a8d9197;hpb=ff17a1ce15e2bb1ea43c05974a17901ca43bc0d7;p=collectd.git diff --git a/src/utils_latency.c b/src/utils_latency.c index d570ab69..7a607e43 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -24,13 +24,17 @@ * Florian Forster **/ +#include +#include + #include "collectd.h" #include "plugin.h" #include "utils_latency.h" #include "common.h" -#include -#include +#ifndef LLONG_MAX +# define LLONG_MAX 9223372036854775807LL +#endif #ifndef HISTOGRAM_NUM_BINS # define HISTOGRAM_NUM_BINS 1000 @@ -72,7 +76,7 @@ struct latency_counter_s * So, if the required bin width is 300, then new bin width will be 512 as it is * the next nearest power of 2. */ -void change_bin_width (latency_counter_t *lc, cdtime_t latency) /* {{{ */ +static void change_bin_width (latency_counter_t *lc, cdtime_t latency) /* {{{ */ { /* This function is called because the new value is above histogram's range. * First find the required bin width: @@ -113,7 +117,7 @@ void change_bin_width (latency_counter_t *lc, cdtime_t latency) /* {{{ */ CDTIME_T_TO_DOUBLE (new_bin_width)); } /* }}} void change_bin_width */ -latency_counter_t *latency_counter_create () /* {{{ */ +latency_counter_t *latency_counter_create (void) /* {{{ */ { latency_counter_t *lc; @@ -159,7 +163,7 @@ void latency_counter_add (latency_counter_t *lc, cdtime_t latency) /* {{{ */ bin = (latency - 1) / lc->bin_width; if (bin >= HISTOGRAM_NUM_BINS) { - ERROR ("utils_latency: latency_counter_add: Invalid bin %lu", bin); + ERROR ("utils_latency: latency_counter_add: Invalid bin: %"PRIu64, bin); return; } }