fix buggy comment in libpayload's strncat function

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4499 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-08-05 13:10:38 +00:00 committed by Stefan Reinauer
parent dec1b47bd7
commit 052d591e64
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ char *strcpy(char *d, const char *s)
*
* @param d The destination string.
* @param s The source string.
* @param n The target string will have a length of n characters at most.
* @param n Not more than n characters from s will be appended to d.
* @return A pointer to the destination string.
*/
char *strncat(char *d, const char *s, size_t n)