[*] .next must be first field in a linked list struct

This commit is contained in:
Milo Turner 2020-02-24 22:44:59 -05:00
parent f76201c0d3
commit b6f96d8275
1 changed files with 1 additions and 1 deletions

View File

@ -14,8 +14,8 @@ struct msgq {
}; };
struct msgq_list { struct msgq_list {
struct msgq* mq;
struct msgq_list* next; struct msgq_list* next;
struct msgq* mq;
}; };
struct msgq_msg_list { struct msgq_msg_list {