diff options
author | Roger Dingledine <arma@torproject.org> | 2004-12-04 13:58:34 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-12-04 13:58:34 +0000 |
commit | 32e74d352500dc228a1de5d5bc97e219897ef09b (patch) | |
tree | a7e694d22b1a60eb2d9d715a085701fbdcd0a395 /src/common | |
parent | 02b3229a0480b1a8a27f48879f7895d6019ab183 (diff) | |
download | tor-32e74d352500dc228a1de5d5bc97e219897ef09b.tar.gz tor-32e74d352500dc228a1de5d5bc97e219897ef09b.zip |
fix comment
svn:r3077
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/container.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/container.c b/src/common/container.c index 0ee53a0fba..0dc8f0bde2 100644 --- a/src/common/container.c +++ b/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 <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) { |