Skip to content

Commit ed6cd8a

Browse files
committed
MathSAT5: fix compilation warning.
The return-value for an invalid argument needs to match VOID if the function-call itself has VOID return type.
1 parent 9a6f400 commit ed6cd8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/native/source/libmathsat5j/org_sosy_1lab_java_1smt_solvers_mathsat5_Mathsat5NativeApi.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ CALL1(int, proof_id)
174174
INT_RETURN
175175

176176
DEFINE_FUNC(void, 1destroy_1proof_1manager) WITH_ONE_ARG(jproofmgr)
177-
PROOF_MGR_ARG(1)
177+
PROOF_MGR_ARG_VOID(1)
178178
VOID_CALL1(destroy_proof_manager)
179179

180180
/*

0 commit comments

Comments
 (0)