mirror of https://github.com/acidanthera/audk.git
ArmPkg/GenericWatchdogDxe: add missing VOID* cast
Use an explicit VOID* cast when passing a static char array into a function taking a void pointer. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org> Tested-by: Leif Lindholm <leif.lindholm@linaro.org> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18193 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
906e8ce469
commit
baeddf2b27
|
@ -111,7 +111,7 @@ WatchdogInterruptHandler (
|
|||
EfiResetCold,
|
||||
EFI_TIMEOUT,
|
||||
StrSize (ResetString),
|
||||
&ResetString
|
||||
(VOID *) &ResetString
|
||||
);
|
||||
|
||||
// If we got here then the reset didn't work
|
||||
|
|
Loading…
Reference in New Issue