[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Add missing "char"
Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv11264/src/or
Modified Files:
circuitlist.c
Log Message:
Add missing "char"
Index: circuitlist.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/circuitlist.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- circuitlist.c 7 Apr 2005 21:07:19 -0000 1.43
+++ circuitlist.c 8 Apr 2005 03:07:07 -0000 1.44
@@ -151,7 +151,7 @@
/** 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";