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.21-89-g2caa409


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  2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3 (commit)
      from  f20bfc9b5e0fb6d44378e0611f7b49182242afc2 (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=2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3

commit 2caa4099dec36b2744b4a0e0fbf6a0ab41ebd9b3
Author: Steve Ellcey <sellcey@mips.com>
Date:   Tue Feb 17 10:04:33 2015 -0800

    2015-02-17  Steve Ellcey  <sellcey@imgtec.com>
    
    	* sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.

diff --git a/ChangeLog b/ChangeLog
index 00a21e5..606d80f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-17  Steve Ellcey  <sellcey@imgtec.com>
+
+	* sysdeps/mips/bits/endian.h (__MIPSEL): Use #ifdef instead of #if.
+
 2015-02-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
 
 	* sysdeps/unix/sysv/linux/s390/pt-longjmp.c
diff --git a/sysdeps/mips/bits/endian.h b/sysdeps/mips/bits/endian.h
index 43ce009..92e97c7 100644
--- a/sysdeps/mips/bits/endian.h
+++ b/sysdeps/mips/bits/endian.h
@@ -8,6 +8,6 @@
 #ifdef __MIPSEB
 # define __BYTE_ORDER __BIG_ENDIAN
 #endif
-#if __MIPSEL
+#ifdef __MIPSEL
 # define __BYTE_ORDER __LITTLE_ENDIAN
 #endif

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

Summary of changes:
 ChangeLog                  |    4 ++++
 sysdeps/mips/bits/endian.h |    2 +-
 2 files changed, 5 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]