]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
whitespace fixes
authorRoger Dingledine <arma@torproject.org>
Sat, 31 Dec 2005 06:26:10 +0000 (06:26 +0000)
committerRoger Dingledine <arma@torproject.org>
Sat, 31 Dec 2005 06:26:10 +0000 (06:26 +0000)
svn:r5682

src/common/container.c

index f3db56c6a04f08e7472c53fdd35d18d58f49b11f..afad890de8742f2f801a143479947e8550020a7d 100644 (file)
@@ -228,6 +228,7 @@ smartlist_del(smartlist_t *sl, int idx)
   tor_assert(idx < sl->num_used);
   sl->list[idx] = sl->list[--sl->num_used];
 }
+
 /** Remove the <b>idx</b>th element of sl; if idx is not the last element,
  * moving all subsequent elements back one space. Return the old value
  * of the <b>idx</b>th element.
@@ -242,6 +243,7 @@ smartlist_del_keeporder(smartlist_t *sl, int idx)
   if (idx < sl->num_used)
     memmove(sl->list+idx, sl->list+idx+1, sizeof(void*)*(sl->num_used-idx));
 }
+
 /** Insert the value <b>val</b> as the new <b>idx</b>th element of
  * <b>sl</b>, moving all items previously at <b>idx</b> or later
  * forward one space.