This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch zack/no-inline-string-opts updated. glibc-2.24-392-g6aa348e


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, zack/no-inline-string-opts has been updated
       via  6aa348ed86dd44fdfb53a0f056f0662f492636d4 (commit)
      from  418b88c847d56ff47d718cf3989633c6a2cf9e30 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6aa348ed86dd44fdfb53a0f056f0662f492636d4

commit 6aa348ed86dd44fdfb53a0f056f0662f492636d4
Author: Zack Weinberg <zackw@panix.com>
Date:   Fri Nov 18 09:38:05 2016 -0500

    correct silly mistake

diff --git a/include/string.h b/include/string.h
index 3b82189..dcfbc74 100644
--- a/include/string.h
+++ b/include/string.h
@@ -80,7 +80,7 @@ extern __typeof (strncasecmp_l) __strncasecmp_l;
 
 libc_hidden_proto (__mempcpy)
 #ifndef __NO_STRING_INLINES
-# define __mempcpy(dest, src) __builtin_mempcpy (dest, src)
+# define __mempcpy(dest, src, n) __builtin_mempcpy (dest, src, n)
 #endif
 libc_hidden_proto (__stpcpy)
 #ifndef __NO_STRING_INLINES

-----------------------------------------------------------------------

Summary of changes:
 include/string.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]