Mercurial > pidgin.yaz
changeset 2353:abdf5f081b29
[gaim-migrate @ 2366]
what the hell?
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Mon, 24 Sep 2001 16:35:27 +0000 |
parents | 39e66e80bb31 |
children | e485dcbefb9a |
files | plugins/lagmeter.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/lagmeter.c Sun Sep 23 20:32:30 2001 +0000 +++ b/plugins/lagmeter.c Mon Sep 24 16:35:27 2001 +0000 @@ -87,11 +87,11 @@ char *m = g_strdup(MY_LAG_STRING); if (my_gc->protocol == PROTO_JABBER) { if (!strchr(my_gc->username, '@')) { - char buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); + char *buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); serv_send_im(my_gc, buf, m, 1); g_free(buf); } else if (!strchr(my_gc->username, '/')) { - char buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); + char *buf = g_strconcat(my_gc->username, "@jabber.org/GAIM", NULL); serv_send_im(my_gc, buf, m, 1); g_free(buf); } else