From 78c4e2f47a33c1d169c20ded236c80122ba181e2 Mon Sep 17 00:00:00 2001 From: MadCamel Date: Tue, 13 Mar 2018 18:25:37 -0400 Subject: [PATCH] Fixed missing ifdef --- src/hostinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hostinfo.c b/src/hostinfo.c index b0157d6..0968ba7 100644 --- a/src/hostinfo.c +++ b/src/hostinfo.c @@ -72,7 +72,9 @@ int parse_proc_status(char *line) int i; key = chop(&line); +#ifdef DEBUG debug("pps key = %s (%s)\n",key,line); +#endif if (key == NULL) return(FALSE); for(i=0;sv[i].key;i++)