aboutsummaryrefslogtreecommitdiff
path: root/src/feature/control/control_fmt.c
diff options
context:
space:
mode:
authorJeremyRand <biolizard89@gmail.com>2019-10-27 03:06:19 +0000
committerJeremyRand <biolizard89@gmail.com>2019-10-27 03:06:19 +0000
commit23819d3a662635f0c7a28c33c145cf65839e056c (patch)
tree0b5b5a58696143e5fac7340313ce34b3b86e68dc /src/feature/control/control_fmt.c
parent0c4e3b6b5064e699ff5879ee99a09e0d27e50442 (diff)
downloadtor-23819d3a662635f0c7a28c33c145cf65839e056c.tar.gz
tor-23819d3a662635f0c7a28c33c145cf65839e056c.zip
Bug 19859: Set arg to const
Diffstat (limited to 'src/feature/control/control_fmt.c')
-rw-r--r--src/feature/control/control_fmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/control/control_fmt.c b/src/feature/control/control_fmt.c
index 6071d82ee4..a48c89e6c7 100644
--- a/src/feature/control/control_fmt.c
+++ b/src/feature/control/control_fmt.c
@@ -167,7 +167,7 @@ circuit_describe_status_for_controller(origin_circuit_t *circ)
/** Allocate and return a description of <b>conn</b>'s current status. */
char *
-entry_connection_describe_status_for_controller(entry_connection_t *conn)
+entry_connection_describe_status_for_controller(const entry_connection_t *conn)
{
char *rv;
smartlist_t *descparts = smartlist_new();