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/or/dns.c | |
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/or/dns.c')
-rw-r--r-- | src/or/dns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 9f1a35a20f..764ce843b9 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -128,9 +128,9 @@ cached_resolve_hash(cached_resolve_t *a) } HT_PROTOTYPE(cache_map, cached_resolve_t, node, cached_resolve_hash, - cached_resolves_eq); + cached_resolves_eq) HT_GENERATE(cache_map, cached_resolve_t, node, cached_resolve_hash, - cached_resolves_eq, 0.6, malloc, realloc, free); + cached_resolves_eq, 0.6, malloc, realloc, free) /** Initialize the DNS cache. */ static void |