1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 17:47:09 +00:00

Remove compiler warning about uninitialized variable

This commit is contained in:
Cesare Tirabassi 2010-01-03 18:52:22 +01:00
parent c73f320798
commit 36b6facaf5

View File

@ -155,7 +155,7 @@ int rel_humidity(int dew_point, int air) {
static void parse_df(PWEATHER_FORECAST *res, xmlXPathContextPtr xpathCtx)
{
int i, j, k;
char *content;
char *content = NULL;
xmlXPathObjectPtr xpathObj;
xpathObj = xmlXPathEvalExpression((const xmlChar *)"/error/err", xpathCtx);