Mercurial > pidgin.yaz
diff plugins/timestamp.c @ 4475:1f3241831734
[gaim-migrate @ 4750]
Fixed the call to gaim_conversation_write().
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 30 Jan 2003 18:38:34 +0000 |
parents | 2c985a9e994c |
children | c7986b4d182a |
line wrap: on
line diff
--- a/plugins/timestamp.c Thu Jan 30 18:14:22 2003 +0000 +++ b/plugins/timestamp.c Thu Jan 30 18:38:34 2003 +0000 @@ -31,7 +31,7 @@ strftime(mdate, sizeof(mdate), "%H:%M", localtime(&tim)); buf = g_strdup_printf(" %s", mdate); - gaim_conversation_write(c, NULL, buf, WFLAG_NOLOG, tim, -1); + gaim_conversation_write(c, NULL, buf, -1, WFLAG_NOLOG, tim); g_free(buf); return TRUE; }