X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Futils_latency.c;h=0b10c3ee91704d95f383a173ea2a2c97d44c80b6;hb=60451f81f174fc283345ade43d95857c56d17e88;hp=f9872669a9d89d2a6231786bde7c13cc23aacf30;hpb=c1e9222b1e9212d48b1ea38d886fc4a79fcd9625;p=collectd.git diff --git a/src/utils_latency.c b/src/utils_latency.c index f9872669..0b10c3ee 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -76,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: @@ -117,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; @@ -163,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; } }