mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
m68k: use correct variable name in boot info string macro
Every time this macro is used, the caller is passing in "parameters_base", so this bug wasn't spotted. But the actual macro variable name is "base", so use that instead. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20220625152318.120849-1-Jason@zx2c4.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
180c2f24d5
commit
23f0a6c80d
1 changed files with 1 additions and 1 deletions
|
@ -54,6 +54,6 @@
|
||||||
stb_phys(as, base++, string[i]); \
|
stb_phys(as, base++, string[i]); \
|
||||||
} \
|
} \
|
||||||
stb_phys(as, base++, 0); \
|
stb_phys(as, base++, 0); \
|
||||||
base = (parameters_base + 1) & ~1; \
|
base = (base + 1) & ~1; \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue