Skip to content

Commit

Permalink
Merge pull request RIOT-OS#1639 from authmillenon/simplify_queue_inhe…
Browse files Browse the repository at this point in the history
…ritance

core: priority_queue: simplify inheritance
  • Loading branch information
LudwigKnuepfer committed Sep 10, 2014
2 parents 2ec20d3 + 1cc82b6 commit 2dc8ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/include/priority_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
*/
typedef struct priority_queue_node_t {
struct priority_queue_node_t *next; /**< next queue node */
unsigned int data; /**< queue node data */
uint32_t priority; /**< queue node priority */
unsigned int data; /**< queue node data */
} priority_queue_node_t;

/**
Expand Down

0 comments on commit 2dc8ea1

Please sign in to comment.