diff options
Diffstat (limited to 'example/expression/expr_grapher.py')
| -rw-r--r-- | example/expression/expr_grapher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/expr_grapher.py b/example/expression/expr_grapher.py index 3137e6d2..0de2142b 100644 --- a/example/expression/expr_grapher.py +++ b/example/expression/expr_grapher.py @@ -9,7 +9,7 @@ d = ExprId("D") m = ExprMem(a + b + c + a) e1 = ExprCompose(a + b - (c * a) / m | b, a + m) -e2 = ExprInt64(15) +e2 = ExprInt(15, 64) e = ExprCond(d, e1, e2)[0:32] print "[+] Expression:" |