diff --git a/panel-plugin/wormulon/linux.c b/panel-plugin/wormulon/linux.c index e45ff7f..2a8f27f 100644 --- a/panel-plugin/wormulon/linux.c +++ b/panel-plugin/wormulon/linux.c @@ -101,11 +101,11 @@ int get_stat(netdata* data) /* do not parse the first two lines as they only contain static garbage */ fseek(proc_net_dev, 0, SEEK_SET); - fgets(buffer, BUFSIZ-1, proc_net_dev); - fgets(buffer, BUFSIZ-1, proc_net_dev); + fgets(buffer, BUFSIZE-1, proc_net_dev); + fgets(buffer, BUFSIZE-1, proc_net_dev); interfacefound = 0; - while (fgets(buffer, BUFSIZ-1, proc_net_dev) != NULL) + while (fgets(buffer, BUFSIZE-1, proc_net_dev) != NULL) { /* find the device name and substitute ':' with '\0' */ ptr = buffer;