Evas encoding: Should be bitwise AND and not logical AND.

SVN revision: 57092
This commit is contained in:
Tom Hacohen 2011-02-16 14:59:36 +00:00
parent 3b7bc65841
commit 129a2eb57b
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ evas_common_encoding_unicode_to_utf8(const Eina_Unicode *uni, int *_len)
if (*uind >= ERROR_REPLACEMENT_BASE &&
*uind <= ERROR_REPLACEMENT_END)
{
*ind++ = *uind && 0xFF;
*ind++ = *uind & 0xFF;
len += 1;
}
else