pktqueue: fix alignment order
Alignment order of `pktqueue_node_t` does not align with `priority_queue_node_t`
This commit is contained in:
parent
1649ff9a61
commit
211cad1ea3
@ -37,8 +37,8 @@ extern "C" {
|
||||
*/
|
||||
typedef struct pktqueue_node_t {
|
||||
struct pktqueue_node_t *next; /**< next node in queue */
|
||||
void *data; /**< pointer to the data */
|
||||
uint32_t priority; /**< priority of the node */
|
||||
void *data; /**< pointer to the data */
|
||||
} pktqueue_node_t;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user