comparison src/protocols/oscar/oscar.c @ 5630:4e2ffa3d9094

[gaim-migrate @ 6037] Constification. Also, what was I going--oh yeah, fixes a compile warning in oscar.c Maybe I should be casting all of the 0.5s to ints? Eh. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 01 Jun 2003 05:18:43 +0000
parents 9a34e950792e
children 960fe32ea9b7
comparison
equal deleted inserted replaced
5629:e2ff6f156917 5630:4e2ffa3d9094
3174 "%s" 3174 "%s"
3175 "%s" 3175 "%s"
3176 "%s\n" 3176 "%s\n"
3177 "<hr>\n"), 3177 "<hr>\n"),
3178 info->sn, images(info->flags), 3178 info->sn, images(info->flags),
3179 (info->warnlevel/10.0) + 0.5, 3179 (int)((info->warnlevel/10.0) + 0.5),
3180 onlinesince ? onlinesince : "", 3180 onlinesince ? onlinesince : "",
3181 membersince ? membersince : "", 3181 membersince ? membersince : "",
3182 idle ? idle : ""); 3182 idle ? idle : "");
3183 3183
3184 g_free(onlinesince); 3184 g_free(onlinesince);