Skip to content

Commit

Permalink
fix cross-plat build
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks committed Jan 3, 2025
1 parent 69b1f03 commit 79a3666
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/platform_worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ ShutdownCompletion(
)
{
CXPLAT_WORKER* Worker =
CONTAINING_RECORD(CxPlatCqeGetSqe(Cqe), CXPLAT_WORKER, ShutdownSqe);
CXPLAT_CONTAINING_RECORD(CxPlatCqeGetSqe(Cqe), CXPLAT_WORKER, ShutdownSqe);
Worker->StoppedThread = TRUE;
}

Expand All @@ -129,7 +129,7 @@ UpdatePollCompletion(
)
{
CXPLAT_WORKER* Worker =
CONTAINING_RECORD(CxPlatCqeGetSqe(Cqe), CXPLAT_WORKER, UpdatePollSqe);
CXPLAT_CONTAINING_RECORD(CxPlatCqeGetSqe(Cqe), CXPLAT_WORKER, UpdatePollSqe);
CxPlatUpdateExecutionContexts(Worker);
}

Expand Down

0 comments on commit 79a3666

Please sign in to comment.