diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-11-26 17:35:42 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-11-26 17:39:24 +0800 |
commit | 0ab9a70d10856dd6876b9a4b31bcf7f5f1663495 (patch) | |
tree | 2afd76a92ba39842d3e583f20ce6c13fb3f86f46 /libempathy-gtk/empathy-theme-adium.c | |
parent | 9ff14672ab605f20789a2db6f9f89673cf8f2c4b (diff) | |
download | gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar.gz gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar.bz2 gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar.lz gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar.xz gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.tar.zst gsoc2013-empathy-0ab9a70d10856dd6876b9a4b31bcf7f5f1663495.zip |
gssize isn't an int on various platforms
Diffstat (limited to 'libempathy-gtk/empathy-theme-adium.c')
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c index 4e70fedb2..0a9fb9830 100644 --- a/libempathy-gtk/empathy-theme-adium.c +++ b/libempathy-gtk/empathy-theme-adium.c @@ -256,7 +256,7 @@ theme_adium_replace_smiley (const gchar *text, /* Replace smiley by a <img/> tag */ g_string_append_printf (string, "<img src=\"%s\" alt=\"%.*s\" title=\"%.*s\"/>", - hit->path, len, text, len, text); + hit->path, (int)len, text, (int)len, text); } static void |