aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/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/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/cell_queue_st.h')
-rw-r--r--src/core/or/cell_queue_st.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/cell_queue_st.h b/src/core/or/cell_queue_st.h
index 763bc5bc1e..7befd2e83a 100644
--- a/src/core/or/cell_queue_st.h
+++ b/src/core/or/cell_queue_st.h
@@ -27,7 +27,7 @@ struct packed_cell_t {
* or_connection_t's outbuf. */
struct cell_queue_t {
/** Linked list of packed_cell_t*/
- TOR_SIMPLEQ_HEAD(cell_simpleq, packed_cell_t) head;
+ TOR_SIMPLEQ_HEAD(cell_simpleq_t, packed_cell_t) head;
int n; /**< The number of cells in the queue. */
};