changeset 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 8fbf1c989f2b
children 62c1e5e656d0
files plugins/timestamp.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;
 }