diff options
author | Alan Hourihane <[email protected]> | 2008-04-25 10:39:52 +0100 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2008-04-25 10:39:52 +0100 |
commit | 118de7a01369977d13f40bab2ad591320cc7f7ff (patch) | |
tree | e7bcc6131b385d3cb83cb57dda93c1de821b7ba5 /src/mesa | |
parent | fddb0f6e4fa67f3d6940e10519560941b59f5a5e (diff) |
silence warning
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/xmlconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c index c313d71e803..8602d47cf97 100644 --- a/src/mesa/drivers/dri/common/xmlconfig.c +++ b/src/mesa/drivers/dri/common/xmlconfig.c @@ -279,7 +279,7 @@ static GLfloat strToF (const XML_Char *string, const XML_Char **tail) { /** \brief Parse a value of a given type. */ static GLboolean parseValue (driOptionValue *v, driOptionType type, const XML_Char *string) { - const XML_Char *tail; + const XML_Char *tail = NULL; /* skip leading white-space */ string += strspn (string, " \f\n\r\t\v"); switch (type) { |