summaryrefslogtreecommitdiff
path: root/sysdeps/linux/sysinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/linux/sysinfo.c')
-rw-r--r--sysdeps/linux/sysinfo.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/linux/sysinfo.c b/sysdeps/linux/sysinfo.c
index d4a19bf3..157936a5 100644
--- a/sysdeps/linux/sysinfo.c
+++ b/sysdeps/linux/sysinfo.c
@@ -33,14 +33,15 @@ static glibtop_sysinfo sysinfo;
static void
init_sysinfo (glibtop *server)
{
- char buffer [BUFSIZ];
- static int init = 0;
+ static gboolean is_init = FALSE;
+
+ char buffer [BUFSIZ];
glibtop_entry *cpuinfo = NULL;
FILE *f;
- if (init) return;
+ if (is_init) return;
- init = TRUE;
+ is_init = TRUE;
glibtop_init_s (&server, GLIBTOP_SYSDEPS_CPU, 0);