From ef01bf26b7b4343a9e3a161415424ba9a82802b6 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Wed, 27 Jun 2018 18:35:49 -0400 Subject: [PATCH] wmifs: Fix typo --- wmifs/wmifs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmifs/wmifs.c b/wmifs/wmifs.c index 460c045..e9dd8bb 100644 --- a/wmifs/wmifs.c +++ b/wmifs/wmifs.c @@ -765,7 +765,7 @@ int get_statistics(char *devname, long *ip, long *op, long *is, long *os) /* Read from /proc/net/dev the stats! */ fp = fopen("/proc/net/dev", "r"); if (!fp) - return -1 + return -1; if (!fgets(temp, BUFFER_SIZE, fp)) { fclose(fp); return -1;