diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-01 02:02:24 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-01 02:02:24 +0000 |
commit | 271d49958e2c740d766fa6952e4540e7a221398d (patch) | |
tree | 0fa9233b423280ffec88d8832466f86b24088194 /src | |
parent | 3bb756b93b89b474fce9cef8c5e11f07df8a66a3 (diff) | |
download | tor-271d49958e2c740d766fa6952e4540e7a221398d.tar.gz tor-271d49958e2c740d766fa6952e4540e7a221398d.zip |
fix another compile warn
svn:r4516
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 9850ca67ce..aadaa9fef9 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -385,7 +385,9 @@ circuit_t * circuit_get_by_edge_conn(connection_t *conn) { circuit_t *circ; +#if 0 connection_t *tmpconn; +#endif tor_assert(CONN_IS_EDGE(conn)); if (! conn->on_circuit) { |