From 96c6a798a56cb2cd96b2c16dfee17330f1744fbb Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Fri, 26 Aug 2016 18:55:22 -0700 Subject: [PATCH] config-parser: Drop debug text Signed-off-by: Bryce Harrington Reviewed-by: Yong Bakos --- shared/config-parser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/shared/config-parser.c b/shared/config-parser.c index d773cc97..e2b5fa25 100644 --- a/shared/config-parser.c +++ b/shared/config-parser.c @@ -237,7 +237,6 @@ weston_config_section_get_color(struct weston_config_section *section, *color = 0; return 0; } else if (len != 8 && len != 10) { - fprintf(stderr, "string '%s' is length %d\n", entry->value, len); *color = default_color; errno = EINVAL; return -1;