From 2e686bcca75a45200830a5ca85a3c4876a94c076 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Thu, 31 May 2007 13:45:03 +0200 Subject: [PATCH] use Callback::GetImpl rather than Callback::PeekImpl --- src/common/packet-printer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/packet-printer.h b/src/common/packet-printer.h index 52fd8b38a..f40efa056 100644 --- a/src/common/packet-printer.h +++ b/src/common/packet-printer.h @@ -182,7 +182,7 @@ PacketPrinter::AddPrinter (Callback (); struct PacketPrinter::Printer p; p.m_chunkUid = uid; - p.m_printer = printer.PeekImpl (); + p.m_printer = printer.GetImpl (); p.m_fragmentPrinter = fragmentPrinter; m_printerList.push_back (p); }