projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0eba02f
)
slist.c: fix indentation
author
Patrick Monnerat
<pm@datasphere.ch>
Mon, 15 Jul 2013 17:46:19 +0000
(19:46 +0200)
committer
Patrick Monnerat
<pm@datasphere.ch>
Mon, 15 Jul 2013 17:46:19 +0000
(19:46 +0200)
lib/slist.c
patch
|
blob
|
history
diff --git
a/lib/slist.c
b/lib/slist.c
index 8e52c70611bdefb3d8f21da86b42c3ad8abdc572..123ea05c3e5038fc975ae1f69e0c8dfd1ea9d00d 100644
(file)
--- 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