aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/destroy_cell_queue_st.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-11-16 15:27:08 -0500
committerNick Mathewson <nickm@torproject.org>2019-11-16 15:27:08 -0500
commit59ba61a69050edacb560a9fa6ad302346e14095e (patch)
tree9290f064da2e4dba2c062a10388bd6d86d08574e /src/core/or/destroy_cell_queue_st.h
parentcc271afedabb3e22bfde23292eb79744554b8005 (diff)
downloadtor-59ba61a69050edacb560a9fa6ad302346e14095e.tar.gz
tor-59ba61a69050edacb560a9fa6ad302346e14095e.zip
Make structs declared by tor_queues.h macros also follow naming rules
Diffstat (limited to 'src/core/or/destroy_cell_queue_st.h')
-rw-r--r--src/core/or/destroy_cell_queue_st.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/destroy_cell_queue_st.h b/src/core/or/destroy_cell_queue_st.h
index 3c4df050c2..3b019ab1c6 100644
--- a/src/core/or/destroy_cell_queue_st.h
+++ b/src/core/or/destroy_cell_queue_st.h
@@ -26,7 +26,7 @@ struct destroy_cell_t {
/** A queue of destroy cells on a channel. */
struct destroy_cell_queue_t {
/** Linked list of packed_cell_t */
- TOR_SIMPLEQ_HEAD(dcell_simpleq, destroy_cell_t) head;
+ TOR_SIMPLEQ_HEAD(dcell_simpleq_t, destroy_cell_t) head;
int n; /**< The number of cells in the queue. */
};