From: Lauri Kasanen Date: Fri, 1 Jul 2011 10:49:18 +0000 (+0300) Subject: xmlconfig: Make the error message more informative X-Git-Tag: 062012170305~4896^2~167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b629d5ba24f76ed6af35455a874d351fde1e5bbe;p=profile%2Fivi%2Fmesa.git xmlconfig: Make the error message more informative --- diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c index 77967ac..12dd31b 100644 --- a/src/mesa/drivers/dri/common/xmlconfig.c +++ b/src/mesa/drivers/dri/common/xmlconfig.c @@ -567,7 +567,7 @@ static void parseOptInfoAttr (struct OptInfoData *data, const XML_Char **attr) { } else defaultVal = attrVal[OA_DEFAULT]; if (!parseValue (&cache->values[opt], cache->info[opt].type, defaultVal)) - XML_FATAL ("illegal default value: %s.", defaultVal); + XML_FATAL ("illegal default value for %s: %s.", cache->info[opt].name, defaultVal); if (attrVal[OA_VALID]) { if (cache->info[opt].type == DRI_BOOL)