diff src/mule-coding.c @ 5538:580ef98f2beb

Suppress a "shadowed global" warning. The warning is for j1 from <math.h> on Darwin.
author Stephen J. Turnbull <stephen@xemacs.org>
date Mon, 08 Aug 2011 13:57:18 +0900
parents 308d34e9f07d
children 48a3d3281b48
line wrap: on
line diff
--- a/src/mule-coding.c	Mon Aug 08 13:57:18 2011 +0900
+++ b/src/mule-coding.c	Mon Aug 08 13:57:18 2011 +0900
@@ -214,10 +214,10 @@
 		ch = c;
 	      else
 		{
-		  UExtbyte j1, j2;
-		  ENCODE_SHIFT_JIS (ch, c, j1, j2);
-		  Dynarr_add (dst, j1);
-		  Dynarr_add (dst, j2);
+		  UExtbyte b1, b2;
+		  ENCODE_SHIFT_JIS (ch, c, b1, b2);
+		  Dynarr_add (dst, b1);
+		  Dynarr_add (dst, b2);
 		  ch = 0;
 		}
 	    }