]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
fix comment
authorRoger Dingledine <arma@torproject.org>
Sat, 4 Dec 2004 13:58:34 +0000 (13:58 +0000)
committerRoger Dingledine <arma@torproject.org>
Sat, 4 Dec 2004 13:58:34 +0000 (13:58 +0000)
svn:r3077

src/common/container.c

index 0ee53a0fba06fbbd2c5ed7f4688fdec414b92f68..0dc8f0bde244bd1f6b7c5e6f06eb3a62dd3af8d7 100644 (file)
@@ -173,8 +173,7 @@ void *smartlist_get(const smartlist_t *sl, int idx)
   tor_assert(idx < sl->num_used);
   return sl->list[idx];
 }
-/** Change the value of the <b>idx</b>th element of sl to <b>val</b>; return the old
- * value of the <b>idx</b>th element.
+/** Change the value of the <b>idx</b>th element of sl to <b>val</b>.
  */
 void smartlist_set(smartlist_t *sl, int idx, void *val)
 {