From 7dc1329100c370992cdd430359512443bd1ee9f2 Mon Sep 17 00:00:00 2001 From: darylm503 Date: Fri, 5 Aug 2011 23:57:34 +0000 Subject: 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 --- StdLib/LibC/Uefi/SysCalls.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'StdLib/LibC') 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)); } -- cgit v1.2.3