diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2013-05-24 09:48:15 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2013-05-24 10:28:31 +0200 |
commit | b0d4ca4990d50f45a4e0e2805ff471f7408c3007 (patch) | |
tree | 33fe1c7e894c4c92c7bc1d0815daf55a7a5a7543 /src/common/container.c | |
parent | 1293835440dd4debf6fbfc66e755d9b9384aa362 (diff) | |
download | tor-b0d4ca4990d50f45a4e0e2805ff471f7408c3007.tar.gz tor-b0d4ca4990d50f45a4e0e2805ff471f7408c3007.zip |
Tweak #6752 patch based on comments by nickm.
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/container.c b/src/common/container.c index 03c65b7c1e..476dc82913 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -243,8 +243,8 @@ smartlist_strings_eq(const smartlist_t *sl1, const smartlist_t *sl2) return 1; } -/** Return true iff the two lists contain the same ints in the same order, - * or if they are both NULL. */ +/** Return true iff the two lists contain the same int pointer values in + * the same order, or if they are both NULL. */ int smartlist_ints_eq(const smartlist_t *sl1, const smartlist_t *sl2) { |