aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 7c93aef4de..1e1320cea7 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -547,7 +547,7 @@ connection_create_listener(const char *listenaddress, uint16_t listenport,
#endif
if (bind(s,(struct sockaddr *)&listenaddr,sizeof(listenaddr)) < 0) {
- char *helpfulhint = "";
+ const char *helpfulhint = "";
int e = tor_socket_errno(s);
if (ERRNO_IS_EADDRINUSE(e))
helpfulhint = ". Is Tor already running?";