summaryrefslogtreecommitdiff
path: root/StdLib/LibC
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-05 23:57:34 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-05 23:57:34 +0000
commit7dc1329100c370992cdd430359512443bd1ee9f2 (patch)
tree045e04a1051626910da63fba85cf208a5a517734 /StdLib/LibC
parent59d13433e7cbc810a6268d38141b0d1db353fa6e (diff)
downloadedk2-platforms-7dc1329100c370992cdd430359512443bd1ee9f2.tar.xz
Fix @return Doxygen commands to be singular instead of plural.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12094 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/LibC')
-rw-r--r--StdLib/LibC/Uefi/SysCalls.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/StdLib/LibC/Uefi/SysCalls.c b/StdLib/LibC/Uefi/SysCalls.c
index d2fb0c6af6..d52249b58b 100644
--- a/StdLib/LibC/Uefi/SysCalls.c
+++ b/StdLib/LibC/Uefi/SysCalls.c
@@ -651,7 +651,7 @@ open(
@param [in] timeout Length of time in milliseconds to wait for the event
- @returns The number of file descriptors with detected events. Zero
+ @return The number of file descriptors with detected events. Zero
indicates that the call timed out and -1 indicates an error.
**/
@@ -1100,12 +1100,12 @@ write (int fd, const void *buf, size_t nbyte)
/** Gets the current working directory.
- The getcwd() function shall place an absolute pathname of the current
- working directory in the array pointed to by buf, and return buf. The
- pathname copied to the array shall contain no components that are
- symbolic links. The size argument is the size in bytes of the character
- array pointed to by the buf argument.
-
+ The getcwd() function shall place an absolute pathname of the current
+ working directory in the array pointed to by buf, and return buf. The
+ pathname copied to the array shall contain no components that are
+ symbolic links. The size argument is the size in bytes of the character
+ array pointed to by the buf argument.
+
@param[in,out] buf The buffer to fill.
@param[in] size The number of bytes in buffer.
@@ -1114,8 +1114,8 @@ write (int fd, const void *buf, size_t nbyte)
@retval NULL Size was 0.
@return buf The function completed successfully. See errno for info.
**/
-char
-*getcwd (char *buf, size_t size)
+char
+*getcwd (char *buf, size_t size)
{
CONST CHAR16 *Cwd;
@@ -1133,7 +1133,7 @@ char
errno = ERANGE;
return (NULL);
}
-
+
return (UnicodeStrToAsciiStr(Cwd, buf));
}