comparison src/plugins.c @ 2359:ad56a93661fc

[gaim-migrate @ 2372] hi usa committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 26 Sep 2001 00:53:49 +0000
parents 571971659533
children 8a304d8c5ce3
comparison
equal deleted inserted replaced
2358:202222f100b6 2359:ad56a93661fc
865 g_snprintf(buf, sizeof buf, "%lu %d", (unsigned long)arg1, (int)arg2); 865 g_snprintf(buf, sizeof buf, "%lu %d", (unsigned long)arg1, (int)arg2);
866 break; 866 break;
867 case event_chat_recv: 867 case event_chat_recv:
868 case event_chat_send_invite: 868 case event_chat_send_invite:
869 g_snprintf(buf, sizeof buf, "%lu %d \"%s\" %s", (unsigned long)arg1, 869 g_snprintf(buf, sizeof buf, "%lu %d \"%s\" %s", (unsigned long)arg1,
870 (int)arg2, (char *)arg3, (char *)arg4); 870 (int)arg2, (char *)arg3, *(char **)arg4 ? *(char **)arg4 : "(null)");
871 break; 871 break;
872 case event_chat_send: 872 case event_chat_send:
873 g_snprintf(buf, sizeof buf, "%lu %d %s", (unsigned long)arg1, (int)arg2, 873 g_snprintf(buf, sizeof buf, "%lu %d %s", (unsigned long)arg1, (int)arg2,
874 *(char **)arg3 ? *(char **)arg3 : "(null)"); 874 *(char **)arg3 ? *(char **)arg3 : "(null)");
875 break; 875 break;