From e42ccef4a7733b39de23a67f27a09f5797b359dc Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Sat, 15 Dec 2007 11:58:14 +0100 Subject: [PATCH] fix optimized build --- src/contrib/delay-jitter-estimation.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contrib/delay-jitter-estimation.cc b/src/contrib/delay-jitter-estimation.cc index 007359758..3904b16cc 100644 --- a/src/contrib/delay-jitter-estimation.cc +++ b/src/contrib/delay-jitter-estimation.cc @@ -73,7 +73,8 @@ void DelayJitterEstimation::RecordRx (Ptr packet) { TimestampTag tag; - bool found = packet->PeekTag (tag); + bool found; + found = packet->PeekTag (tag); NS_ASSERT (found); tag.GetTxTime ();