diff --git a/trunk/src/common/container.c b/trunk/src/common/container.c index 0ee53a0fba..0dc8f0bde2 100644 --- a/trunk/src/common/container.c +++ b/trunk/src/common/container.c @@ -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 idxth element of sl to val; return the old - * value of the idxth element. +/** Change the value of the idxth element of sl to val. */ void smartlist_set(smartlist_t *sl, int idx, void *val) {