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
This commit is contained in:
Derek Atkins 2006-09-27 20:36:56 +00:00
parent a8c8a4f280
commit 57cc5debe9

View File

@ -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);
}
}