From: Tobias Mueller Date: Sat, 28 Feb 2009 02:14:07 +0000 (+0000) Subject: Forgot to remove unnecessary argument to g_set_error in X-Git-Tag: upstream/3.7.4~4188 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e883b5f50985f57b8cd1fbc266965f711a91fea;p=platform%2Fupstream%2Fevolution-data-server.git Forgot to remove unnecessary argument to g_set_error in E_CALENDAR_CHECK_STATUS in r10111. svn path=/trunk/; revision=10112 --- diff --git a/calendar/libecal/e-cal.c b/calendar/libecal/e-cal.c index a90c80a..9603a52 100644 --- a/calendar/libecal/e-cal.c +++ b/calendar/libecal/e-cal.c @@ -180,7 +180,7 @@ static GObjectClass *parent_class; else { \ const char *msg; \ msg = e_cal_get_error_message ((status)); \ - g_set_error ((error), E_CALENDAR_ERROR, (status), "%s", msg, (status)); \ + g_set_error ((error), E_CALENDAR_ERROR, (status), "%s", msg); \ return FALSE; \ } }G_STMT_END