diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-08-12 17:24:53 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-08-12 17:24:53 +0000 |
commit | 789374dbbd6931fb9749161ea2882fccfc172343 (patch) | |
tree | cdb535dd3382ff2a5265ac67ccb419253aa31d1c /src/or/circuitbuild.c | |
parent | 21959c1bfd8bbc465a330fe8d9ad52518de51f71 (diff) | |
download | tor-789374dbbd6931fb9749161ea2882fccfc172343.tar.gz tor-789374dbbd6931fb9749161ea2882fccfc172343.zip |
Make GCC very happy, even with lots of warnings set. Also, try to fix some reported Solaris x86 warnings.
svn:r4770
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 34ce5e2b9e..8242a5a3ed 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1672,7 +1672,7 @@ remove_dead_helpers(void) for (i = 0; i < smartlist_len(helper_nodes); ) { helper_node_t *helper = smartlist_get(helper_nodes, i); - char *why = NULL; + const char *why = NULL; time_t since = 0; if (helper->unlisted_since + HELPER_ALLOW_UNLISTED > now) { why = "unlisted"; |