Fix compile error

This commit is contained in:
Austin Bonander
2014-11-24 02:13:35 -08:00
parent ad942a12f8
commit 34203aa608

View File

@@ -432,7 +432,7 @@ pub struct HeaderFormatter<H: HeaderFormat>(H);
impl<H: HeaderFormat> Show for HeaderFormatter<H> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.fmt_header(f)
self.0.fmt_header(f)
}
}