From a670fe2ea6f50e49f647aa10d9add7cc7eb74fac Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 20 Jul 2008 03:10:56 +0000 Subject: [PATCH] Fix the build svn path=/branches/glib-2-16/; revision=7216 --- gio/ChangeLog | 4 ++++ gio/gfile.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gio/ChangeLog b/gio/ChangeLog index de9f154e4..c56bce867 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,7 @@ +2008-07-19 Matthias Clasen + + * gfile.c: Make it compile. + 2008-07-19 Matthias Clasen Merge from trunk: diff --git a/gio/gfile.c b/gio/gfile.c index a248bedb1..260e888df 100644 --- a/gio/gfile.c +++ b/gio/gfile.c @@ -4015,9 +4015,9 @@ open_read_async_thread (GSimpleAsyncResult *res, if (iface->read_fn == NULL) { - g_set_error_literal (error, G_IO_ERROR, - G_IO_ERROR_NOT_SUPPORTED, - _("Operation not supported")); + g_set_error (error, G_IO_ERROR, + G_IO_ERROR_NOT_SUPPORTED, + _("Operation not supported")); g_simple_async_result_set_from_error (res, error); g_error_free (error);