aboutsummaryrefslogtreecommitdiff
path: root/src/comp
diff options
context:
space:
mode:
authorMarijn Haverbeke <[email protected]>2011-04-19 10:15:26 +0200
committerMarijn Haverbeke <[email protected]>2011-04-19 16:57:13 +0200
commit9bfc8bf11e15b7b9a782f1757f9a0ebe324b16e4 (patch)
tree688d5ac52ff6cdcdeb364dfe4b418370a9aee5ab /src/comp
parentPrecision overrides 0-padding in #fmt (diff)
downloadrust-9bfc8bf11e15b7b9a782f1757f9a0ebe324b16e4.tar.xz
rust-9bfc8bf11e15b7b9a782f1757f9a0ebe324b16e4.zip
Add log_err to rustboot
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/middle/walk.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/middle/walk.rs b/src/comp/middle/walk.rs
index c0248864..cdfa363a 100644
--- a/src/comp/middle/walk.rs
+++ b/src/comp/middle/walk.rs
@@ -390,7 +390,7 @@ fn walk_expr(&ast_visitor v, @ast.expr e) {
case (ast.expr_be(?x, _)) {
walk_expr(v, x);
}
- case (ast.expr_log(?x, _)) {
+ case (ast.expr_log(_,?x, _)) {
walk_expr(v, x);
}
case (ast.expr_check_expr(?x, _)) {