dbghelp: Fix a compiler warning on ARM64.

This commit is contained in:
Alexandre Julliard 2023-10-18 20:46:42 +02:00
parent 7ff690f4bd
commit 52618e1d3c

View file

@ -168,7 +168,7 @@ static unsigned arm64_map_dwarf_register(unsigned regno, const struct module* mo
static void *arm64_fetch_context_reg(union ctx *pctx, unsigned regno, unsigned *size)
{
#ifdef __aarch64__
CONTEXT *ctx = pctx;
CONTEXT *ctx = &pctx->ctx;
switch (regno)
{