Mercurial > pidgin.yaz
changeset 11953:4824e4f0c6f3
[gaim-migrate @ 14244]
Compile warning be gone!
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 02 Nov 2005 05:56:15 +0000 |
parents | 565d2e437c04 |
children | 351f4dd75718 |
files | src/protocols/sametime/sametime.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/sametime/sametime.c Wed Nov 02 05:23:00 2005 +0000 +++ b/src/protocols/sametime/sametime.c Wed Nov 02 05:56:15 2005 +0000 @@ -2663,8 +2663,8 @@ gaim_mime_part_get_data_decoded(part, &data, &len); - txt = im_decode(pd->gc, data); - g_string_append(str, txt?txt:(char *)data); + txt = im_decode(pd->gc, (const char *)data); + g_string_append(str, txt?txt:(const char *)data); g_free(data); g_free(txt);