svn commit: r262462 - head/lib/libiconv_modules/VIQR

Xin LI delphij at FreeBSD.org
Mon Feb 24 23:58:08 UTC 2014


Author: delphij
Date: Mon Feb 24 23:58:07 2014
New Revision: 262462
URL: http://svnweb.freebsd.org/changeset/base/262462

Log:
  Patch 2/2:
  
  Reindent the code after previous change.
  
  X-MFC-With:	r262447

Modified:
  head/lib/libiconv_modules/VIQR/citrus_viqr.c

Modified: head/lib/libiconv_modules/VIQR/citrus_viqr.c
==============================================================================
--- head/lib/libiconv_modules/VIQR/citrus_viqr.c	Mon Feb 24 23:56:09 2014	(r262461)
+++ head/lib/libiconv_modules/VIQR/citrus_viqr.c	Mon Feb 24 23:58:07 2014	(r262462)
@@ -458,19 +458,19 @@ _citrus_VIQR_encoding_module_init(_VIQRE
 		}
 	}
 	if (mnemonic_ext > 0) {
-	for (i = 0; i < mnemonic_ext_size; ++i) {
-		p = &mnemonic_ext[i];
-		n = strlen(p->name);
-		if (ei->mb_cur_max < n)
-			ei->mb_cur_max = n;
-		errnum = mnemonic_append_child(ei->mroot,
-		    p->name, p->value, ei->invalid);
-		if (errnum != 0) {
-			_citrus_VIQR_encoding_module_uninit(ei);
-			return (errnum);
+		for (i = 0; i < mnemonic_ext_size; ++i) {
+			p = &mnemonic_ext[i];
+			n = strlen(p->name);
+			if (ei->mb_cur_max < n)
+				ei->mb_cur_max = n;
+			errnum = mnemonic_append_child(ei->mroot,
+			    p->name, p->value, ei->invalid);
+			if (errnum != 0) {
+				_citrus_VIQR_encoding_module_uninit(ei);
+				return (errnum);
+			}
 		}
 	}
-	}
 
 	return (0);
 }


More information about the svn-src-head mailing list