diff options
Diffstat (limited to 'MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c')
-rw-r--r-- | MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c b/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c index 4679624e70..d67c94ccd2 100644 --- a/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c +++ b/MdeModulePkg/Library/EdkFvbServiceLib/X64/Fvb.c @@ -479,8 +479,8 @@ EfiFvbGetVolumeAttributes ( **/
EFI_STATUS
EfiFvbSetVolumeAttributes (
- IN UINTN Instance,
- IN EFI_FVB_ATTRIBUTES Attributes
+ IN UINTN Instance,
+ IN OUT EFI_FVB_ATTRIBUTES *Attributes
)
{
if (Instance >= mFvbCount) {
@@ -491,7 +491,7 @@ EfiFvbSetVolumeAttributes ( return EFI_INVALID_PARAMETER;
}
- return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, &Attributes);
+ return mFvbEntry[Instance].Fvb->SetAttributes (mFvbEntry[Instance].Fvb, Attributes);
}
/**
|