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.22-336-g7d6f9f7


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  7d6f9f74c8292d63cc3b574eb84919c54946e679 (commit)
      from  e88c14d009de6f6899ec70688c93a9118f0262be (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=7d6f9f74c8292d63cc3b574eb84919c54946e679

commit 7d6f9f74c8292d63cc3b574eb84919c54946e679
Author: Florian Weimer <fweimer@redhat.com>
Date:   Wed Oct 7 10:48:59 2015 +0200

    iconvdata: Add missing const to lookup table definitions

diff --git a/ChangeLog b/ChangeLog
index 6dfe825..e1761b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-10-07  Florian Weimer  <fweimer@redhat.com>
+
+	* iconvdata/cp737.h (from_idx): Add const.
+	* iconvdata/cp775.h (from_idx): Likewise.
+
 2015-10-07  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/mips/mips64/Implies: Use ieee754/dbl-64/wordsize-64.
diff --git a/iconvdata/cp737.h b/iconvdata/cp737.h
index 6a2265a..a39b71d 100644
--- a/iconvdata/cp737.h
+++ b/iconvdata/cp737.h
@@ -294,7 +294,7 @@ static const uint32_t to_ucs4[256] =
 
    where gap.pl is the file in this directory.
  */
-static struct gap from_idx[] =
+static const struct gap from_idx[] =
 {
   { .start = 0x0000, .end = 0x007f, .idx =     0 },
   { .start = 0x00a0, .end = 0x00a0, .idx =   -32 },
diff --git a/iconvdata/cp775.h b/iconvdata/cp775.h
index 97f97f5..1553124 100644
--- a/iconvdata/cp775.h
+++ b/iconvdata/cp775.h
@@ -294,7 +294,7 @@ static const uint32_t to_ucs4[256] =
 
    where gap.pl is the file in this directory.
  */
-static struct gap from_idx[] =
+static const struct gap from_idx[] =
 {
   { .start = 0x0000, .end = 0x007f, .idx =     0 },
   { .start = 0x00a0, .end = 0x00c9, .idx =   -32 },

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

Summary of changes:
 ChangeLog         |    5 +++++
 iconvdata/cp737.h |    2 +-
 iconvdata/cp775.h |    2 +-
 3 files changed, 7 insertions(+), 2 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]