diff plugins/lagmeter.c @ 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 4e2d8992774e
children b31f0edaf48d
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