mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
fixed buggy if condition
This commit is contained in:
parent
459e456f66
commit
4857de6c81
|
@ -123,7 +123,7 @@ datalog::ddnf_core* populate_ddnf(char const* file, ptr_vector<tbv>& tbvs) {
|
|||
|
||||
|
||||
static void read_args(char ** argv, int argc, int& i) {
|
||||
if (argc = i + 2) {
|
||||
if (argc == i + 2) {
|
||||
g_file = argv[i + 1];
|
||||
++i;
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue