From b1fa8249f19eac9a2066ca6b4d1ffd438c666dc8 Mon Sep 17 00:00:00 2001 From: Lindsey Kuper Date: Tue, 19 Jun 2012 17:04:39 -0700 Subject: [PATCH] Fix incorrect fn name in debug statement --- src/rustc/middle/typeck/infer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustc/middle/typeck/infer.rs b/src/rustc/middle/typeck/infer.rs index 03dac5cb9ae..8a38e2d85cb 100644 --- a/src/rustc/middle/typeck/infer.rs +++ b/src/rustc/middle/typeck/infer.rs @@ -2489,7 +2489,7 @@ impl of lattice_ops for glb { fn lattice_tys( self: L, a: ty::t, b: ty::t) -> cres { - #debug("%s.tys(%s, %s)", self.tag(), + #debug("%s.lattice_tys(%s, %s)", self.tag(), a.to_str(self.infcx()), b.to_str(self.infcx())); if a == b { ret ok(a); }