[coreboot] [v2] r4499 - trunk/payloads/libpayload/libc

svn at coreboot.org svn at coreboot.org
Wed Aug 5 15:10:39 CEST 2009


Author: stepan
Date: 2009-08-05 15:10:38 +0200 (Wed, 05 Aug 2009)
New Revision: 4499

Modified:
   trunk/payloads/libpayload/libc/string.c
Log:
fix buggy comment in libpayload's strncat function

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



Modified: trunk/payloads/libpayload/libc/string.c
===================================================================
--- trunk/payloads/libpayload/libc/string.c	2009-08-05 13:06:37 UTC (rev 4498)
+++ trunk/payloads/libpayload/libc/string.c	2009-08-05 13:10:38 UTC (rev 4499)
@@ -165,7 +165,7 @@
  *
  * @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)





More information about the coreboot mailing list