mirror of https://github.com/acidanthera/audk.git
Fixed one bug of WriteUnaligned24()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@342 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
94e68c3e10
commit
6edd7697ec
|
@ -113,7 +113,8 @@ WriteUnaligned24 (
|
||||||
{
|
{
|
||||||
ASSERT (Buffer != NULL);
|
ASSERT (Buffer != NULL);
|
||||||
|
|
||||||
return *Buffer = BitFieldWrite32 (*Buffer, 0, 23, Value);
|
BitFieldWrite32 (*Buffer, 0, 23, Value);
|
||||||
|
return Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue