mirror of
https://github.com/curl/curl.git
synced 2026-06-01 19:44:16 +03:00
slist.c: fix indentation
This commit is contained in:
parent
0eba02fd41
commit
99924f6606
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue