Fixed a "comparison is always false" warning

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-01-23 02:44:42 +00:00
parent e50d5284f9
commit 2fd4848088

View File

@@ -71,7 +71,7 @@ static wxUint16* LINKAGEMODE GetEncTable(wxFontEncoding enc)
char s[2] ; char s[2] ;
s[1] = 0 ; s[1] = 0 ;
ByteCount byteInLen, byteOutLen ; ByteCount byteInLen, byteOutLen ;
for( char c = 255 ; c >= 128 ; --c ) for( unsigned char c = 255 ; c >= 128 ; --c )
{ {
s[0] = c ; s[0] = c ;
status = TECConvertText(converter, (ConstTextPtr) &s , 1, &byteInLen, status = TECConvertText(converter, (ConstTextPtr) &s , 1, &byteInLen,