From 5cb410f866276ccb46be2ebc98686dd2ed7c328d Mon Sep 17 00:00:00 2001 From: saerome kim Date: Tue, 29 Aug 2017 12:51:00 +0900 Subject: [PATCH] Fix 64bit build errors Change-Id: I03478fb91d47234c81655b8fcbbca3df9417871f Signed-off-by: saerome kim --- test/wifi-mesh-network.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/wifi-mesh-network.c b/test/wifi-mesh-network.c index e8ecf54..0f91e63 100644 --- a/test/wifi-mesh-network.c +++ b/test/wifi-mesh-network.c @@ -151,13 +151,13 @@ static void found_station_cb(wifi_mesh_station_info_h station, void* user_data) msg("inactive_time = %d", inactive_time); ret = wifi_mesh_get_sta_rx_bytes(station, &rx_bytes); if (WIFI_MESH_ERROR_NONE == ret) - msg("rx_bytes = %lld", rx_bytes); + msg("rx_bytes = %"G_GUINT64_FORMAT, rx_bytes); ret = wifi_mesh_get_sta_rx_packets(station, &rx_packets); if (WIFI_MESH_ERROR_NONE == ret) msg("rx_packets = %d", rx_packets); ret = wifi_mesh_get_sta_tx_bytes(station, &tx_bytes); if (WIFI_MESH_ERROR_NONE == ret) - msg("tx_bytes = %lld", tx_bytes); + msg("tx_bytes = %"G_GUINT64_FORMAT, tx_bytes); ret = wifi_mesh_get_sta_tx_packets(station, &tx_packets); if (WIFI_MESH_ERROR_NONE == ret) msg("tx_packets = %d", tx_packets); @@ -172,10 +172,10 @@ static void found_station_cb(wifi_mesh_station_info_h station, void* user_data) msg("beacon_loss = %d", beacon_loss); ret = wifi_mesh_get_sta_beacon_rx(station, &beacon_rx); if (WIFI_MESH_ERROR_NONE == ret) - msg("beacon_rx = %lld", beacon_rx); + msg("beacon_rx = %"G_GUINT64_FORMAT, beacon_rx); ret = wifi_mesh_get_sta_rx_drop_misc(station, &rx_drop_misc); if (WIFI_MESH_ERROR_NONE == ret) - msg("rx_drop_misc = %lld", rx_drop_misc); + msg("rx_drop_misc = %"G_GUINT64_FORMAT, rx_drop_misc); ret = wifi_mesh_get_sta_signal(station, &signal); if (WIFI_MESH_ERROR_NONE == ret) msg("signal = %d", signal); -- 2.34.1