summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-04-01 14:16:49 -0400
committerNick Mathewson <nickm@torproject.org>2016-04-01 14:16:49 -0400
commit705d3b221e4011b4d041dd486c98f42201322193 (patch)
tree4a94c7d71e1e76d6c0bc2cc706f6686279a6339f /src
parent4b3e6c4d43b169c04b7fa34c1f2bb618b97151bf (diff)
parentbeba70ec77a0306a7769f1bdbee839c0af8e853b (diff)
downloadtor-705d3b221e4011b4d041dd486c98f42201322193.tar.gz
tor-705d3b221e4011b4d041dd486c98f42201322193.zip
Merge branch 'incoming_queue_symbol_fix'
Diffstat (limited to 'src')
-rw-r--r--src/or/channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/channel.h b/src/or/channel.h
index 129c0c2013..a8c337e107 100644
--- a/src/or/channel.h
+++ b/src/or/channel.h
@@ -18,7 +18,7 @@ typedef void (*channel_cell_handler_fn_ptr)(channel_t *, cell_t *);
typedef void (*channel_var_cell_handler_fn_ptr)(channel_t *, var_cell_t *);
struct cell_queue_entry_s;
-TOR_SIMPLEQ_HEAD(chan_cell_queue, cell_queue_entry_s) incoming_queue;
+TOR_SIMPLEQ_HEAD(chan_cell_queue, cell_queue_entry_s);
typedef struct chan_cell_queue chan_cell_queue_t;
/**