Fixed format error
[platform/core/connectivity/net-config.git] / gtest / netstat.cpp
index 02b8f20..96a276c 100755 (executable)
@@ -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;