aboutsummaryrefslogtreecommitdiff
path: root/lib/slist.c
diff options
context:
space:
mode:
authorPatrick Monnerat <pm@datasphere.ch>2013-07-15 19:46:19 +0200
committerPatrick Monnerat <pm@datasphere.ch>2013-07-15 19:46:19 +0200
commit99924f66067ebd00d4fffd1d318de2680619d91b (patch)
tree378d04399d60693ec4fdf6feb9507ac503ff414f /lib/slist.c
parent0eba02fd41263218a0eaedbe65af739a9bb2da63 (diff)
slist.c: fix indentation
Diffstat (limited to 'lib/slist.c')
-rw-r--r--lib/slist.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/slist.c b/lib/slist.c
index 8e52c7061..123ea05c3 100644
--- a/lib/slist.c
+++ b/lib/slist.c
@@ -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