1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 20:31:17 +00:00

fix compilation error due to initial declaration in for loop being not compliant with C99

This commit is contained in:
Cesare Tirabassi 2009-08-05 17:55:09 +02:00
parent 0cd29676c0
commit 4d35595e5e

View File

@ -48,7 +48,9 @@ void prss_parse_data(void *result, const char *xml_data)
void free_rss_items(PRSS *data)
{
for (int i = 0; i < data->item_count; i++) {
int i;
for (i = 0; i < data->item_count; i++) {
#define CLEAR(a) if (data->items[i].a) { free(data->items[i].a); data->items[i].a = 0; }
CLEAR(title);
CLEAR(link);