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.14-360-g538faaa


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  538faaa7f2cc76335a06c2d53c5902dfb7e58174 (commit)
      from  cdf2901f5e951cdcf88cd628892d188d5c660493 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=538faaa7f2cc76335a06c2d53c5902dfb7e58174

commit 538faaa7f2cc76335a06c2d53c5902dfb7e58174
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Sat Oct 15 01:06:47 2011 -0400

    Fix definition of __isctype_f

diff --git a/ChangeLog b/ChangeLog
index 4d70e83..1b13a1e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-15  Ulrich Drepper  <drepper@gmail.com>
+
+	* ctype/ctype.h (__isctype_f): Add missing __THROW.
+
 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
 
 	* elf/pldd-xx.c (find_maps): Remove leftover debug message.
diff --git a/ctype/ctype.h b/ctype/ctype.h
index 111e3a9..1f3052a 100644
--- a/ctype/ctype.h
+++ b/ctype/ctype.h
@@ -92,7 +92,7 @@ extern __const __int32_t **__ctype_toupper_loc (void)
 #elif defined __USE_EXTERN_INLINES
 # define __isctype_f(type) \
   __extern_inline int							      \
-  is##type (int __c)							      \
+  is##type (int __c) __THROW						      \
   {									      \
     return (*__ctype_b_loc ())[(int) (__c)] & (unsigned short int) _IS##type; \
   }

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

Summary of changes:
 ChangeLog     |    4 ++++
 ctype/ctype.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]