diff options
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"; |