Fix 64bit build errors 65/146465/4 accepted/tizen/unified/20170829.140436 submit/tizen/20170829.051237 submit/tizen_4.0/20170830.011909 submit/tizen_4.0/20170905.101604
authorsaerome kim <saerome.kim@samsung.com>
Tue, 29 Aug 2017 03:51:00 +0000 (12:51 +0900)
committersaerome kim <saerome.kim@samsung.com>
Tue, 29 Aug 2017 05:05:06 +0000 (14:05 +0900)
Change-Id: I03478fb91d47234c81655b8fcbbca3df9417871f
Signed-off-by: saerome kim <saerome.kim@samsung.com>
test/wifi-mesh-network.c

index e8ecf54cb43d2d517bdcb295cf9b180752832df8..0f91e63dfa34fdf2211b1dcedd8da0770a00a5ca 100644 (file)
@@ -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);