From: Zack Weinberg Date: Mon, 14 Nov 2016 17:35:10 +0000 (-0500) Subject: Fix typo in string/bits/string2.h. X-Git-Tag: glibc-2.25~311 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=9601d3ad787729c74f3971814426fc9e64571d80;p=glibc.git Fix typo in string/bits/string2.h. The comment above the bzero() macro in this file appears to have been copied verbatim from the comment above the memset() prototype in string.h proper. bzero() has no 'c' argument and can only set memory contents to 0. (The comment above the prototype of bzero() in string.h proper does not make the same mistake.) * string/bits/string2.h: Fix typo in comment. --- diff --git a/ChangeLog b/ChangeLog index f2b6683003..ca424aeb79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-11-14 Zack Weinberg + + * string/bits/string2.h: Fix typo in comment. + 2016-11-14 Zack Weinberg * misc/sys/sysmacros.h (__SYSMACROS_DM, __SYSMACROS_DM1): New macros. diff --git a/string/bits/string2.h b/string/bits/string2.h index 80987602f3..ca1eda9bd1 100644 --- a/string/bits/string2.h +++ b/string/bits/string2.h @@ -52,7 +52,7 @@ #define __string2_1bptr_p(__x) \ ((size_t)(const void *)((__x) + 1) - (size_t)(const void *)(__x) == 1) -/* Set N bytes of S to C. */ +/* Set N bytes of S to 0. */ #if !defined _HAVE_STRING_ARCH_memset # define __bzero(s, n) __builtin_memset (s, '\0', n) #endif