* iconv/gconv_builtin.c (builtin_map): Change type of size
authorUlrich Drepper <drepper@redhat.com>
Mon, 19 Dec 2005 04:55:31 +0000 (04:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 19 Dec 2005 04:55:31 +0000 (04:55 +0000)
information fields to int8_t.

ChangeLog
iconv/gconv_builtin.c

index 4916a4e..3c186d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-12-18  Ulrich Drepper  <drepper@redhat.com>
 
+       * iconv/gconv_builtin.c (builtin_map): Change type of size
+       information fields to int8_t.
+
        * libio/iofwide.c (__libio_codecvt): Mark as const.
        (__libio_translit): Likewise.
        * libio/libioP.h (__libio_codecvt): Adjust declaraction.
index bea8328..d8beabd 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <endian.h>
 #include <limits.h>
+#include <stdint.h>
 #include <string.h>
 
 #include <gconv_int.h>
 #include <assert.h>
 
 
-static struct builtin_map
+static const struct builtin_map
 {
   const char *name;
   __gconv_fct fct;
   __gconv_btowc_fct btowc_fct;
 
-  int min_needed_from;
-  int max_needed_from;
-  int min_needed_to;
-  int max_needed_to;
+  int8_t min_needed_from;
+  int8_t max_needed_from;
+  int8_t min_needed_to;
+  int8_t max_needed_to;
 
-} map[] attribute_relro =
+} map[] =
 {
 #define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, BtowcFct, \
                               MinF, MaxF, MinT, MaxT) \