# HG changeset patch # User Christian Hammond # Date 1043951914 0 # Node ID 1f32418317348f0d670c017ae90b339542334a97 # Parent 8fbf1c989f2bdd2ccc8379bbeac87585fabd5440 [gaim-migrate @ 4750] Fixed the call to gaim_conversation_write(). committer: Tailor Script diff -r 8fbf1c989f2b -r 1f3241831734 plugins/timestamp.c --- 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; }