diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-05-15 21:17:48 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-05-15 21:17:48 +0000 |
commit | e043b86f47185e0d9df53dab12d42e46c8c35b83 (patch) | |
tree | 0ebfb1bbce0fbcfa7d6e470b98d5bf90e9889a02 /src/common/container.c | |
parent | bfdc366037690c74d1e6b73fc33e2f73842ed793 (diff) | |
download | tor-e043b86f47185e0d9df53dab12d42e46c8c35b83.tar tor-e043b86f47185e0d9df53dab12d42e46c8c35b83.tar.gz |
r12764@catbus: nickm | 2007-05-15 17:17:39 -0400
Enable (and cope with) more GCC 4.2 warnings.
svn:r10196
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/container.c b/src/common/container.c index 36234743a..e3523735d 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -87,7 +87,7 @@ smartlist_ensure_capacity(smartlist_t *sl, int size) int higher = sl->capacity * 2; while (size > higher) higher *= 2; - tor_assert(higher > sl->capacity); /* detect overflow */ + tor_assert(higher > 0); /* detect overflow */ sl->capacity = higher; sl->list = tor_realloc(sl->list, sizeof(void*)*sl->capacity); } |