From 5f898ddbaa7df01d2479e40238d8c7954fc4b67a Mon Sep 17 00:00:00 2001 From: Tiago Vignatti Date: Fri, 11 Dec 2009 17:04:14 +0200 Subject: [PATCH] xfree86: fix -quiet option behaviour Previously it was trying to set the same value as the default one. Sigh. Signed-off-by: Tiago Vignatti Acked-by: Rami Ylimaki Signed-off-by: Keith Packard --- hw/xfree86/common/xf86Init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))