summaryrefslogtreecommitdiff
path: root/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-06 18:34:23 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-06 18:34:23 +0000
commit9bb407c64341443be5935b4a92697e24da2e9088 (patch)
treeb6151bf9570332d36737cf6362e7134032aaa635 /MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c
parent1bfc7438ab980ccac093ba86ab85b2b30e91f992 (diff)
downloadedk2-platforms-9bb407c64341443be5935b4a92697e24da2e9088.tar.xz
Fix IN OUT specifiers
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7474 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c')
-rw-r--r--MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c
index 08a0191c14..8f2488a3b2 100644
--- a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c
+++ b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c
@@ -250,8 +250,8 @@ IsDevicePathEndInstance (
**/
UINT16
SetDevicePathNodeLength (
- IN VOID *Node,
- IN UINTN NodeLength
+ IN OUT VOID *Node,
+ IN UINTN NodeLength
)
{
ASSERT (Node != NULL);
@@ -277,7 +277,7 @@ SetDevicePathNodeLength (
**/
VOID
SetDevicePathEndNode (
- IN VOID *Node
+ OUT VOID *Node
)
{
ASSERT (Node != NULL);