PERFORCE change 167076 for review

Xin LI delphij at FreeBSD.org
Thu Aug 6 22:56:09 UTC 2009


http://perforce.freebsd.org/chv.cgi?CH=167076

Change 167076 by delphij at charlie on 2009/08/06 22:55:52

	Fix build on amd64.

Affected files ...

.. //depot/projects/soc2009/gabor_iconv/extracted/lib/libiconv_modules/ISO2022/citrus_iso2022.c#7 edit

Differences ...

==== //depot/projects/soc2009/gabor_iconv/extracted/lib/libiconv_modules/ISO2022/citrus_iso2022.c#7 (text+ko) ====

@@ -373,7 +373,7 @@
 			break;
 		if (len>=sizeof(buf))
 			goto parsefail;
-		snprintf(buf, sizeof(buf), "%.*s", len, v);
+		snprintf(buf, sizeof(buf), "%.*s", (int)len, v);
 
 		if ((ret = get_recommend(ei, buf)) != _NOTMATCH)
 			;


More information about the p4-projects mailing list