From 57cc5debe9429a603efc3f49312d889ec4b86ae3 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Wed, 27 Sep 2006 20:36:56 +0000 Subject: [PATCH] Don't pass a pointer to a pointer. It's just expecting the pointer. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14908 57a11ea4-9604-0410-9ed3-97b8803252fd --- lib/libqof/qof/qofquery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libqof/qof/qofquery.c b/lib/libqof/qof/qofquery.c index 53d7bef2ce..48afb8c4a4 100644 --- a/lib/libqof/qof/qofquery.c +++ b/lib/libqof/qof/qofquery.c @@ -808,7 +808,7 @@ static void qof_query_run_cb(QofQueryCB* qcb, gpointer cb_arg) /* And then iterate over all the objects */ qof_object_foreach (qcb->query->search_for, book, - (QofEntityForeachCB) check_item_cb, &qcb); + (QofEntityForeachCB) check_item_cb, qcb); } }