mirror of https://github.com/acidanthera/audk.git
NetworkPkg/HttpBootDxe: Fix a typo in variable name
Correctly write 'Initialized'. Cc: Jiaxin Wu <jiaxin.wu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Maciej Rabeda <maciej.rabeda@intel.com> Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com> Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com> Message-Id: <20200207010831.9046-37-philmd@redhat.com>
This commit is contained in:
parent
d80c3d6e19
commit
cd72b6cfd1
|
@ -552,7 +552,7 @@ HttpBootConfigFormInit (
|
|||
|
||||
CallbackInfo = &Private->CallbackInfo;
|
||||
|
||||
if (CallbackInfo->Initilized) {
|
||||
if (CallbackInfo->Initialized) {
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -632,7 +632,7 @@ HttpBootConfigFormInit (
|
|||
FreePool (MacString);
|
||||
FreePool (OldMenuString);
|
||||
|
||||
CallbackInfo->Initilized = TRUE;
|
||||
CallbackInfo->Initialized = TRUE;
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ extern UINT8 HttpBootConfigVfrBin[];
|
|||
|
||||
struct _HTTP_BOOT_FORM_CALLBACK_INFO {
|
||||
UINT32 Signature;
|
||||
BOOLEAN Initilized;
|
||||
BOOLEAN Initialized;
|
||||
EFI_HANDLE ChildHandle;
|
||||
EFI_DEVICE_PATH_PROTOCOL *HiiVendorDevicePath;
|
||||
EFI_HII_HANDLE RegisteredHandle;
|
||||
|
|
Loading…
Reference in New Issue