summaryrefslogtreecommitdiffstats
path: root/common/log.h
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-07-08 01:47:31 +0000
committerPavel Roskin <plroskin@gmail.com>2016-07-08 04:29:57 +0000
commit2c13ef5c6dd90ee2dcbcba282b2ee702e2ee9f84 (patch)
tree93829ae428c1930e1163b4798b18f908763db013 /common/log.h
parent0c72ee237192b8e7e73070b6ec9273666b997d26 (diff)
downloadxrdp-proprietary-2c13ef5c6dd90ee2dcbcba282b2ee702e2ee9f84.tar.gz
xrdp-proprietary-2c13ef5c6dd90ee2dcbcba282b2ee702e2ee9f84.zip
Use enum logLevels consistently for log levels
Diffstat (limited to 'common/log.h')
-rw-r--r--common/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/log.h b/common/log.h
index b90ac660..61a05d9c 100644
--- a/common/log.h
+++ b/common/log.h
@@ -68,9 +68,9 @@ struct log_config
const char *program_name;
char *log_file;
int fd;
- unsigned int log_level;
+ enum logLevels log_level;
int enable_syslog;
- unsigned int syslog_level;
+ enum logLevels syslog_level;
pthread_mutex_t log_lock;
pthread_mutexattr_t log_lock_attr;
};