Commit 52618e1d authored by Alexandre Julliard's avatar Alexandre Julliard

dbghelp: Fix a compiler warning on ARM64.

parent 7ff690f4
...@@ -168,7 +168,7 @@ static unsigned arm64_map_dwarf_register(unsigned regno, const struct module* mo ...@@ -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) static void *arm64_fetch_context_reg(union ctx *pctx, unsigned regno, unsigned *size)
{ {
#ifdef __aarch64__ #ifdef __aarch64__
CONTEXT *ctx = pctx; CONTEXT *ctx = &pctx->ctx;
switch (regno) switch (regno)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment