X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gtest%2Fnetstat.cpp;h=96a276cfced089087476133c0e1829dfeff05e8d;hb=c2a32db4948b649d0c3ed1aed27d5501bd732f66;hp=02b8f204458c6a93b23884e6cd574d2e8a0e73db;hpb=504097a20bd561bebea51c94a01ef8543d3f0eba;p=platform%2Fcore%2Fconnectivity%2Fnet-config.git diff --git a/gtest/netstat.cpp b/gtest/netstat.cpp index 02b8f20..96a276c 100755 --- a/gtest/netstat.cpp +++ b/gtest/netstat.cpp @@ -35,7 +35,7 @@ NetStat::~NetStat() error_e NetStat::GetWifiTotalTxBytes(void) { - uint64_t tx_bytes = 0; + unsigned long long tx_bytes = 0; GVariant *message = NULL; error_e error = ERROR_NONE; @@ -61,7 +61,7 @@ error_e NetStat::GetWifiTotalTxBytes(void) error_e NetStat::GetWifiTotalRxBytes(void) { - uint64_t rx_bytes = 0; + unsigned long long rx_bytes = 0; GVariant *message = NULL; error_e error = ERROR_NONE; @@ -87,7 +87,7 @@ error_e NetStat::GetWifiTotalRxBytes(void) error_e NetStat::GetWifiLastTxBytes(void) { - uint64_t tx_bytes = 0; + unsigned long long tx_bytes = 0; GVariant *message = NULL; error_e error = ERROR_NONE; @@ -113,7 +113,7 @@ error_e NetStat::GetWifiLastTxBytes(void) error_e NetStat::GetWifiLastRxBytes(void) { - uint64_t rx_bytes = 0; + unsigned long long rx_bytes = 0; GVariant *message = NULL; error_e error = ERROR_NONE;