From 58920aab0237aaa9f4a81577800bddba97e279a5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 3 Nov 2010 07:09:45 +1100 Subject: lib/debug Add clarifying comments --- lib/util/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/util/debug.c b/lib/util/debug.c index 789abe19c2..845240fdb7 100644 --- a/lib/util/debug.c +++ b/lib/util/debug.c @@ -46,8 +46,8 @@ static struct { /* state variables for the debug system */ static struct { - int fd; - enum debug_logtype logtype; + int fd; /* The log file handle */ + enum debug_logtype logtype; /* The type of logging we are doing: eg stdout, file, stderr */ const char *prog_name; bool reopening_logs; } state; -- cgit