fix(tvix/eval): correctly print lambda address in observer
We want the address that the Rc is pointing to, not the address of the Rc. Change-Id: I8eba21677f242bbe4166c74d4aa4269c316076e3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8045 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
fc61dff037
commit
3c311ffab2
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ impl<W: Write> RuntimeObserver for TracingObserver<W> {
|
||||||
let _ = writeln!(
|
let _ = writeln!(
|
||||||
&mut self.writer,
|
&mut self.writer,
|
||||||
"in frame[{}] @ {:p} ===",
|
"in frame[{}] @ {:p} ===",
|
||||||
call_depth, lambda
|
call_depth, *lambda
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue