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);
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);