From 34203aa608543469d06ab4c208b69ff3430cfbc7 Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Mon, 24 Nov 2014 02:13:35 -0800 Subject: [PATCH] Fix compile error --- src/header/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/mod.rs b/src/header/mod.rs index 3588b2d5..d2e7a3f1 100644 --- a/src/header/mod.rs +++ b/src/header/mod.rs @@ -432,7 +432,7 @@ pub struct HeaderFormatter(H); impl Show for HeaderFormatter { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - self.fmt_header(f) + self.0.fmt_header(f) } }