mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +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) {
|
static void read_args(char ** argv, int argc, int& i) {
|
||||||
if (argc = i + 2) {
|
if (argc == i + 2) {
|
||||||
g_file = argv[i + 1];
|
g_file = argv[i + 1];
|
||||||
++i;
|
++i;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue