aboutsummaryrefslogtreecommitdiffstats
path: root/prog/expr.go
diff options
context:
space:
mode:
Diffstat (limited to 'prog/expr.go')
-rw-r--r--prog/expr.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/prog/expr.go b/prog/expr.go
index 87fb056a9..fbffd3578 100644
--- a/prog/expr.go
+++ b/prog/expr.go
@@ -8,7 +8,7 @@ import (
"fmt"
)
-func (bo *BinaryExpression) Evaluate(finder ArgFinder) (uint64, bool) {
+func (bo BinaryExpression) Evaluate(finder ArgFinder) (uint64, bool) {
left, ok := bo.Left.Evaluate(finder)
if !ok {
return 0, false