This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Fix for locale/programs/ld-ctype.c



There's a variable declaration missing.

Andreas

2000-02-25  Andreas Jaeger  <aj@suse.de>

	* locale/programs/ld-ctype.c (allocate_arrays): Add missing
	variable declaration.

============================================================
Index: locale/programs/ld-ctype.c
--- locale/programs/ld-ctype.c	2000/02/24 05:51:30	1.56
+++ locale/programs/ld-ctype.c	2000/02/25 08:38:44
@@ -3050,7 +3050,8 @@
 		 struct repertoire_t *repertoire)
 {
   size_t idx;
-
+  size_t width_table_size;
+  
   /* First we have to decide how we organize the arrays.  It is easy
      for a one-byte character set.  But multi-byte character set
      cannot be stored flat because the chars might be sparsely used.

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.rhein-neckar.de

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]