diff options
author | marha <marha@users.sourceforge.net> | 2013-03-19 08:55:17 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-03-19 08:55:17 +0100 |
commit | 55a9a54c65cd0ff58966408ea4d7879a3d9c749c (patch) | |
tree | b418cbd6dd8e24166c57b5c6c2576a5d46e1285b /xorg-server/hw/xwin | |
parent | 9211565d37c899069c66590ab67c8b7dd923b9fe (diff) | |
download | vcxsrv-55a9a54c65cd0ff58966408ea4d7879a3d9c749c.tar.gz vcxsrv-55a9a54c65cd0ff58966408ea4d7879a3d9c749c.tar.bz2 vcxsrv-55a9a54c65cd0ff58966408ea4d7879a3d9c749c.zip |
Solved problem of logverbosity parameter not taking into account
Diffstat (limited to 'xorg-server/hw/xwin')
-rw-r--r-- | xorg-server/hw/xwin/winprocarg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/winprocarg.c b/xorg-server/hw/xwin/winprocarg.c index 292d45fb1..570b91721 100644 --- a/xorg-server/hw/xwin/winprocarg.c +++ b/xorg-server/hw/xwin/winprocarg.c @@ -1031,6 +1031,7 @@ ddxProcessArgument(int argc, char *argv[], int i) if (IS_OPTION("-logverbose")) { CHECK_ARGS(1); g_iLogVerbose = atoi(argv[++i]); + LogSetParameter(XLOG_VERBOSITY, g_iLogVerbose); return 2; } |