summaryrefslogtreecommitdiff
path: root/src/couchdb/curlhelper.c
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
committerNoah Slater <nslater@apache.org>2009-07-06 00:33:50 +0000
commit282b96ddd9a84b740788c2358ec0f5fedafb7cc6 (patch)
treefb48e605ceb8079d0195d3b1ec0eca7110fa7ef2 /src/couchdb/curlhelper.c
parentb5cc085d3bc6316063f14adedf20632ee904875d (diff)
trimmed trailing whitespace
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@791350 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/curlhelper.c')
-rw-r--r--src/couchdb/curlhelper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/curlhelper.c b/src/couchdb/curlhelper.c
index 99b2e6ab..116612cd 100644
--- a/src/couchdb/curlhelper.c
+++ b/src/couchdb/curlhelper.c
@@ -38,7 +38,7 @@ Buffer init_Buffer() {
}
void free_Buffer(Buffer b) {
- if(b == NULL)
+ if(b == NULL)
return;
if(b->data != NULL)
free(b->data);
@@ -186,7 +186,7 @@ int set_List(List l, int pos, void* ptr) {
}
*(l->elements + pos) = ptr;
-
+
return TRUE;
}