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 <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>



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)


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to