Author: oxygene Date: Tue Mar 22 14:40:09 2011 New Revision: 6459 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6459
Log: libpayload: Fix documentation
Signed-off-by: Patrick Georgi patrick.georgi@secunet.com Acked-by: Patrick Georgi patrick.georgi@secunet.com
Modified: trunk/payloads/libpayload/libc/string.c
Modified: trunk/payloads/libpayload/libc/string.c ============================================================================== --- trunk/payloads/libpayload/libc/string.c Mon Mar 21 15:43:21 2011 (r6458) +++ trunk/payloads/libpayload/libc/string.c Tue Mar 22 14:40:09 2011 (r6459) @@ -246,7 +246,7 @@ * * @param d The destination string. * @param s The source string. - * @param n Not more than n characters from s will be appended to d. + * @param n d will have at most n-1 characters (plus NUL) after invocation. * @return A pointer to the destination string. */ size_t strlcat(char *d, const char *s, size_t n)