summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/BaseFileHandleLib
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-29 16:28:23 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-29 16:28:23 +0000
commitb82bfcc17f4ba0abf31640eb9f26d5e271f79cf1 (patch)
treee463ae2c286943663bede4647331bc1079a5c23b /ShellPkg/Library/BaseFileHandleLib
parent894d038a8d0e99d456042e2b6d1554c4a406ea70 (diff)
downloadedk2-platforms-b82bfcc17f4ba0abf31640eb9f26d5e271f79cf1.tar.xz
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8681 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/BaseFileHandleLib')
-rw-r--r--ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c b/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c
index 023210e8e0..9136b9c200 100644
--- a/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c
+++ b/ShellPkg/Library/BaseFileHandleLib/BaseFileHandleLib.c
@@ -648,8 +648,8 @@ FileHandleGetSize (
if Destination's current length (including NULL terminator) is already more then
CurrentSize, then ASSERT()
- @param[in][out] Destination The String to append onto
- @param[in][out] CurrentSize on call the number of bytes in Destination. On
+ @param[in,out] Destination The String to append onto
+ @param[in,out] CurrentSize on call the number of bytes in Destination. On
return possibly the new size (still in bytes). if NULL
then allocate whatever is needed.
@param[in] Source The String to append from
@@ -808,8 +808,8 @@ FileHandleGetFileName (
Function to read a single line (up to but not including the \n) from a file.
@param[in] Handle FileHandle to read from
- @param[in][out] Buffer pointer to buffer to read into
- @param[in][out] Size pointer to number of bytes in buffer
+ @param[in,out] Buffer pointer to buffer to read into
+ @param[in,out] Size pointer to number of bytes in buffer
@param[in[ Truncate if TRUE then allows for truncation of the line to fit.
if FALSE will reset the position to the begining of the
line if the buffer is not large enough.