Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Aug 2009 22:56:06 GMT
From:      Xin LI <delphij@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 167076 for review
Message-ID:  <200908062256.n76Mu6C8015005@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=167076

Change 167076 by delphij@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)
 			;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908062256.n76Mu6C8015005>