Mesa (master): xmlconfig: remove an unused-but-set variable

Marek Olšák mareko at kemper.freedesktop.org
Fri Jul 15 19:48:47 UTC 2011


Module: Mesa
Branch: master
Commit: 7854b8cb166e513300085f8798b3fd05ae6a492e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7854b8cb166e513300085f8798b3fd05ae6a492e

Author: Marek Olšák <maraeo at gmail.com>
Date:   Fri Jul 15 21:09:02 2011 +0200

xmlconfig: remove an unused-but-set variable

I hate gcc 4.6 already.

---

 src/mesa/drivers/dri/common/xmlconfig.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c
index 0226b38..77967ac 100644
--- a/src/mesa/drivers/dri/common/xmlconfig.c
+++ b/src/mesa/drivers/dri/common/xmlconfig.c
@@ -765,9 +765,9 @@ static void parseDeviceAttr (struct OptConfData *data, const XML_Char **attr) {
 /** \brief Parse attributes of an application element. */
 static void parseAppAttr (struct OptConfData *data, const XML_Char **attr) {
     GLuint i;
-    const XML_Char *name = NULL, *exec = NULL;
+    const XML_Char *exec = NULL;
     for (i = 0; attr[i]; i += 2) {
-	if (!strcmp (attr[i], "name")) name = attr[i+1];
+	if (!strcmp (attr[i], "name")) /* not needed here */;
 	else if (!strcmp (attr[i], "executable")) exec = attr[i+1];
 	else XML_WARNING("unknown application attribute: %s.", attr[i]);
     }




More information about the mesa-commit mailing list