From 6face4f4820107cee4a72538abcef9d547f594d9 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 8 Apr 2005 03:07:07 +0000 Subject: [PATCH] Add missing "char" svn:r4054 --- src/or/circuitlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 502939956a..8206b9520c 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -151,7 +151,7 @@ void circuit_close_all_marked(void) /** Function to make circ-\>state human-readable */ const char * circuit_state_to_string(int state) { - static buf[64]; + static char buf[64]; switch (state) { case CIRCUIT_STATE_BUILDING: return "doing handshakes"; case CIRCUIT_STATE_ONIONSKIN_PENDING: return "processing the onion";