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:
parent
dec1b47bd7
commit
052d591e64
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue