From cdf4ac3653a47da1f9566e33f9dc7abbfeb79299 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 22 Jan 2001 22:36:36 +0000 Subject: Change the callbacks in this file to match the callback function types. 2001-01-22 Christopher James Lahey * component/e-summary-url.c: Change the callbacks in this file to match the callback function types. Fixes warnings. svn path=/trunk/; revision=7723 --- executive-summary/component/e-summary-url.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'executive-summary/component') diff --git a/executive-summary/component/e-summary-url.c b/executive-summary/component/e-summary-url.c index ab7dacc52d..2c405b8664 100644 --- a/executive-summary/component/e-summary-url.c +++ b/executive-summary/component/e-summary-url.c @@ -102,8 +102,9 @@ typedef struct _DownloadInfo DownloadInfo; static void close_callback (GnomeVFSAsyncHandle *handle, GnomeVFSResult result, - DownloadInfo *info) + gpointer data) { + DownloadInfo *info = data; if (info->error) { gtk_html_stream_close (info->stream, GTK_HTML_STREAM_ERROR); } else { @@ -121,8 +122,9 @@ read_callback (GnomeVFSAsyncHandle *handle, gpointer buffer, GnomeVFSFileSize bytes_requested, GnomeVFSFileSize bytes_read, - DownloadInfo *info) + gpointer data) { + DownloadInfo *info = data; if (result != GNOME_VFS_OK && result != GNOME_VFS_ERROR_EOF) { g_warning ("Read error"); info->error = TRUE; -- cgit v1.2.3