summaryrefslogtreecommitdiffstats
path: root/collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c
diff options
context:
space:
mode:
Diffstat (limited to 'collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c')
-rw-r--r--collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c b/collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c
index a04d4303..b32597bc 100644
--- a/collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c
+++ b/collectors/proc.plugin/proc_sys_kernel_random_entropy_avail.c
@@ -17,7 +17,7 @@ int do_proc_sys_kernel_random_entropy_avail(int update_every, usec_t dt) {
ff = procfile_readall(ff);
if(unlikely(!ff)) return 0; // we return 0, so that we will retry to open it next time
- unsigned long long entropy = str2ull(procfile_lineword(ff, 0, 0));
+ unsigned long long entropy = str2ull(procfile_lineword(ff, 0, 0), NULL);
static RRDSET *st = NULL;
static RRDDIM *rd = NULL;