3
0
Fork 0
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:
Christoph M. Wintersteiger 2015-10-04 15:16:03 +01:00
parent 459e456f66
commit 4857de6c81

View file

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