Skip to content

Commit

Permalink
xboxkrnl: Fix typo in RemoveHeadList macro
Browse files Browse the repository at this point in the history
Fixed type in RemoveHeadList macro variable name.
  • Loading branch information
LoveMHz authored and thrimbor committed Jan 2, 2023
1 parent 5a0af68 commit 22565f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xboxkrnl/xboxkrnl.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ typedef CONST UNICODE_STRING *PCUNICODE_STRING;

#define IsListEmpty(ListHead) ((ListHead)->Flink == (ListHead))

#define RemoveHeadList(Listhead) (ListHead)->Flink;{RemoveEntryList((ListHead)->Flink)}
#define RemoveHeadList(ListHead) (ListHead)->Flink;{RemoveEntryList((ListHead)->Flink)}

#define RemoveTailList(ListHead) (ListHead)->Blink;{RemoveEntryList((ListHead)->Blink)}

Expand Down

0 comments on commit 22565f6

Please sign in to comment.