Skip to content

Commit

Permalink
Silence compile warning with a cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
jralls committed Dec 12, 2024
1 parent 8331f99 commit 77a95b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgnucash/engine/qofquery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ check_object (const QofQuery *q, gpointer object)
/* The last term is the actual parameter getter */
if (!node->next) break;

conv_obj = param->param_getfcn (conv_obj, param);
conv_obj = (void*)param->param_getfcn (conv_obj, param);
}

if (((qt->pred_fcn)(conv_obj, param, qt->pdata)) == qt->invert)
Expand Down

0 comments on commit 77a95b2

Please sign in to comment.