diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-06-17 18:22:35 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-06-17 18:22:35 +0000 |
commit | 93f32db438cff63662761374f4a69b710f3d71d9 (patch) | |
tree | ffa15ba0ef9b46c065c22a8de1552414510e418b /src/common/container.h | |
parent | 99792df64585558ae51ec4b93f26ee42a07cd82c (diff) | |
download | tor-93f32db438cff63662761374f4a69b710f3d71d9.tar.gz tor-93f32db438cff63662761374f4a69b710f3d71d9.zip |
r13476@catbus: nickm | 2007-06-17 14:04:41 -0400
Build with fewer compiler warnings on Sun. (This and previous Sun patches are thanks to the tremendously handy services of unix-center.net.)
svn:r10644
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/container.h b/src/common/container.h index e926ce16d3..44ea81fa65 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -193,7 +193,7 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join, prefix##iter_t *prefix##iter_next_rmv(maptype *map, prefix##iter_t *iter); \ void prefix##iter_get(prefix##iter_t *iter, keytype *keyp, void **valp); \ int prefix##iter_done(prefix##iter_t *iter); \ - void prefix##assert_ok(const maptype *map); + void prefix##assert_ok(const maptype *map) /* Map from const char * to void *. Implemented with a hash table. */ DECLARE_MAP_FNS(strmap_t, const char *, strmap_); |