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.27.9000-157-g48d34cb


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  48d34cbc234ce21c79316dc7de9c27207903c220 (commit)
      from  3403cb7dd4ce1e36802f448ecba2bccc6706e73e (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=48d34cbc234ce21c79316dc7de9c27207903c220

commit 48d34cbc234ce21c79316dc7de9c27207903c220
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Mar 4 01:35:12 2018 +0100

    hurd: fix header conformity
    
    	* hurd/hurd/fd.h (_hurd_fd_error): Fix struct initializer to be
    	trivial, for C++ conformity.

diff --git a/ChangeLog b/ChangeLog
index 297af74..32270f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,6 +14,8 @@
 	* hurd/hurd/port.h: Do not include <hurd/signal.h>.
 	* hurd/hurd/userlink.h [!defined __USE_EXTERN_INLINES ||
 	!defined _LIBC || !IS_IN (libc)]: Do not include <hurd/signal.h>.
+	* hurd/hurd/fd.h (_hurd_fd_error): Fix struct initializer to be
+	trivial, for C++ conformity.
 
 2018-03-03  Andreas Schwab  <schwab@linux-m68k.org>
 
diff --git a/hurd/hurd/fd.h b/hurd/hurd/fd.h
index 22dc944..5d51c11 100644
--- a/hurd/hurd/fd.h
+++ b/hurd/hurd/fd.h
@@ -179,7 +179,7 @@ _hurd_fd_error (int fd, error_t err)
   if (signo)
     {
       const struct hurd_signal_detail detail
-	= { code: fd, error: err, exc: 0 };
+	= { exc: 0, exc_code: 0, exc_subcode: 0, code: fd, error: err };
       _hurd_raise_signal (NULL, signo, &detail);
     }
   return err;

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

Summary of changes:
 ChangeLog      |    2 ++
 hurd/hurd/fd.h |    2 +-
 2 files changed, 3 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]