X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils_latency.c;h=2fb3f83342a0e85fbea3c72c7e2a2f23dcf2cbb2;hb=4103105fb43cd72294f165b2541540b3a8a99532;hp=12fc9b82dfa6e1e3817184d6027ef7f4b724fbee;hpb=f701e685eab83f37ecc6501d7dbe4eb941a454bb;p=collectd.git diff --git a/src/utils_latency.c b/src/utils_latency.c index 12fc9b82..2fb3f833 100644 --- a/src/utils_latency.c +++ b/src/utils_latency.c @@ -25,6 +25,7 @@ **/ #include "collectd.h" + #include "plugin.h" #include "utils_latency.h" #include "common.h" @@ -76,7 +77,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,14 +118,13 @@ 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; - lc = malloc (sizeof (*lc)); + lc = calloc (1, sizeof (*lc)); if (lc == NULL) return (NULL); - memset (lc, 0, sizeof (*lc)); latency_counter_reset (lc); lc->bin_width = HISTOGRAM_DEFAULT_BIN_WIDTH;