diff options
-rw-r--r-- | lib/util/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |