diff src/html.c @ 2662:b0c5770156e1

[gaim-migrate @ 2675] everything changed! not really. actually to be quite honest nothing changed. it's really bad that all of these files use prpl references. most of them shouldn't. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 02 Nov 2001 01:41:37 +0000
parents 34812d648f72
children dd78d89c910b
line wrap: on
line diff
--- a/src/html.c	Fri Nov 02 00:52:07 2001 +0000
+++ b/src/html.c	Fri Nov 02 01:41:37 2001 +0000
@@ -113,7 +113,7 @@
 }
 
 struct grab_url_data {
-	void (*callback)(gpointer, char *);
+	void (* callback)(gpointer, char *);
 	gpointer data;
 	struct g_url *website;
 	char *url;
@@ -202,7 +202,7 @@
 	}
 }
 
-void grab_url(char *url, gboolean full, void (*callback)(gpointer, char *), gpointer data)
+void grab_url(char *url, gboolean full, void callback(gpointer, char *), gpointer data)
 {
 	int sock;
 	struct grab_url_data *gunk = g_new0(struct grab_url_data, 1);