mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
slist.c: fix indentation
This commit is contained in:
parent
0eba02fd41
commit
99924f6606
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user