diff -r 22633ca47dfe -r 4399c14e1ad0 nettools/conntest/src/Utils.cpp --- a/nettools/conntest/src/Utils.cpp Wed Sep 15 11:52:39 2010 +0300 +++ b/nettools/conntest/src/Utils.cpp Wed Oct 13 14:11:18 2010 +0300 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). + * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" @@ -19,7 +19,7 @@ // INCLUDE FILES #include #include -#include +#include #include #include @@ -57,13 +57,13 @@ // Calculate throughput // ---------------------------------------------------------------------------- // -void Utils::CalculateThroughput( TDes8& aBuffer, TTime aStartTime, TUint64 aSize ) +void Utils::CalculateThroughput( TDes8& aBuffer, TTime aStartTime, TInt aSize ) { TTime now; now.UniversalTime(); TTimeIntervalMicroSeconds interval; interval = now.MicroSecondsFrom( aStartTime ); - TUint64 num = interval.Int64(); + TInt num = I64INT(interval.Int64()); if (num != 0) {