1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

slist.c: fix indentation

This commit is contained in:
Patrick Monnerat 2013-07-15 19:46:19 +02:00
parent 0eba02fd41
commit 99924f6606

View File

@ -73,10 +73,10 @@ struct curl_slist *Curl_slist_append_nodup(struct curl_slist *list, char *data)
if(!list)
return new_item;
last = slist_get_last(list);
last->next = new_item;
return list;
}
last = slist_get_last(list);
last->next = new_item;
return list;
}
/*
* curl_slist_append() appends a string to the linked list. It always returns