From: saerome kim Date: Tue, 29 Aug 2017 03:51:00 +0000 (+0900) Subject: Fix 64bit build errors X-Git-Tag: submit/tizen/20170829.051237^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cb410f866276ccb46be2ebc98686dd2ed7c328d;p=platform%2Fcore%2Fapi%2Fwifi-mesh.git Fix 64bit build errors Change-Id: I03478fb91d47234c81655b8fcbbca3df9417871f Signed-off-by: saerome kim --- 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);