pktqueue: fix alignment order

Alignment order of `pktqueue_node_t` does not align with `priority_queue_node_t`
This commit is contained in:
Martine Lenders 2014-11-25 18:50:12 +01:00
parent 1649ff9a61
commit 211cad1ea3

View File

@ -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;
/**