diff options
author | Tiago Vignatti <tiago.vignatti@nokia.com> | 2009-12-11 17:04:14 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-12-16 21:49:31 -0800 |
commit | 5f898ddbaa7df01d2479e40238d8c7954fc4b67a (patch) | |
tree | 1647e79c7511a300b196070cfd2209af508fea47 | |
parent | 7284e198619cdacb38d0ad715e932acff86c8367 (diff) |
xfree86: fix -quiet option behaviour
Previously it was trying to set the same value as the default one. Sigh.
Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
Acked-by: Rami Ylimaki <ext-rami.ylimaki@nokia.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/xfree86/common/xf86Init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 502341ca3..3b25c89a6 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -1448,7 +1448,7 @@ ddxProcessArgument(int argc, char **argv, int i) } if (!strcmp(argv[i],"-quiet")) { - xf86SetVerbosity(0); + xf86SetVerbosity(-1); return 1; } if (!strcmp(argv[i],"-showconfig") || !strcmp(argv[i],"-version")) |