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 master updated. glibc-2.20-499-g882dfe1


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, master has been updated
       via  882dfe184a81a8924bc8acb79e96fbf7556fa60b (commit)
      from  39a12f8db4656bec88ebd51e524778ef2e5468b9 (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=882dfe184a81a8924bc8acb79e96fbf7556fa60b

commit 882dfe184a81a8924bc8acb79e96fbf7556fa60b
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
Date:   Wed Jan 7 16:26:26 2015 -0200

    mips: Fix __libc_pread prototype
    
    This patch fixes the __libc_pread prototype change from
    14bb4e57c094849228ad8524693ab9432c38396c.

diff --git a/ChangeLog b/ChangeLog
index f5631c3..98d3dc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+	* sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Fix function
+	prototype.
+
 2015-01-07  Chris Metcalf  <cmetcalf@ezchip.com>
 
 	* posix/regcomp.c (parse_bracket_exp): Initialize type to
diff --git a/sysdeps/unix/sysv/linux/mips/pread.c b/sysdeps/unix/sysv/linux/mips/pread.c
index c301067..a7b1618 100644
--- a/sysdeps/unix/sysv/linux/mips/pread.c
+++ b/sysdeps/unix/sysv/linux/mips/pread.c
@@ -36,7 +36,7 @@
 
 
 ssize_t
-__libc_pread (int fd, void *buf, size_t count, off_t offset):
+__libc_pread (int fd, void *buf, size_t count, off_t offset)
 {
   ssize_t result;
 

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

Summary of changes:
 ChangeLog                            |    5 +++++
 sysdeps/unix/sysv/linux/mips/pread.c |    2 +-
 2 files changed, 6 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]