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:
Vincent Ambo 2023-02-07 22:06:55 +03:00 committed by clbot
parent fc61dff037
commit 3c311ffab2

View file

@ -152,7 +152,7 @@ impl<W: Write> RuntimeObserver for TracingObserver<W> {
let _ = writeln!(
&mut self.writer,
"in frame[{}] @ {:p} ===",
call_depth, lambda
call_depth, *lambda
);
}