svn commit: r262442 - head/lib/libiconv_modules/HZ

Tijl Coosemans tijl at FreeBSD.org
Mon Feb 24 13:43:12 UTC 2014


Author: tijl
Date: Mon Feb 24 13:43:11 2014
New Revision: 262442
URL: http://svnweb.freebsd.org/changeset/base/262442

Log:
  Fix Simplified Chinese character set conversions by switching around the
  fields of an internal struct so it corresponds with the way variables of
  this type are initialised.
  
  PR:		185964
  Submitted by:	Manuel Mausz <manuel-freebsd at mausz.at>
  MFC after:	5 days

Modified:
  head/lib/libiconv_modules/HZ/citrus_hz.c

Modified: head/lib/libiconv_modules/HZ/citrus_hz.c
==============================================================================
--- head/lib/libiconv_modules/HZ/citrus_hz.c	Mon Feb 24 13:33:20 2014	(r262441)
+++ head/lib/libiconv_modules/HZ/citrus_hz.c	Mon Feb 24 13:43:11 2014	(r262442)
@@ -65,8 +65,8 @@ typedef enum {
 } charset_t;
 
 typedef struct {
-	int	 end;
 	int	 start;
+	int	 end;
 	int	 width;
 } range_t;
 


More information about the svn-src-head mailing list