src/protocols/msn/utils.c

changeset 5964
2b02a79497a7
parent 5312
7f9faad3e386
child 6093
2095841fde03
equal deleted inserted replaced
5963:ecf9c1cc885b 5964:2b02a79497a7
84 msn_parse_format(const char *mime) 84 msn_parse_format(const char *mime)
85 { 85 {
86 char *cur; 86 char *cur;
87 GString *ret = g_string_new(NULL); 87 GString *ret = g_string_new(NULL);
88 guint colorbuf; 88 guint colorbuf;
89 char *colors = (char *)(&colorbuf); 89 unsigned char *colors = (unsigned char *)(&colorbuf);
90 90
91 cur = strstr(mime, "FN="); 91 cur = strstr(mime, "FN=");
92 92
93 if (cur && (*(cur = cur + 3) != ';')) { 93 if (cur && (*(cur = cur + 3) != ';')) {
94 ret = g_string_append(ret, "<FONT FACE=\""); 94 ret = g_string_append(ret, "<FONT FACE=\"");

mercurial