From 30faa127e21762c0ced0525df0f90900654d0192 Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Tue, 19 Nov 2019 17:02:54 +0900 Subject: [PATCH] Fix wrong print format Change-Id: Ic57635d6f6bb3fda1f6abce2f14c0ab10b234f7f --- src/network-statistics.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network-statistics.c b/src/network-statistics.c index cc8f803..d948882 100755 --- a/src/network-statistics.c +++ b/src/network-statistics.c @@ -135,14 +135,14 @@ static gboolean handle_get_wifi_total_rx_bytes( netconfig_vconf_get_int(VCONFKEY_NETWORK_WIFI_PKT_TOTAL_RCV, &val); rx_bytes = (guint64)val; - DBG("got rx packet size from vconf [%lld]", rx_bytes); + DBG("got rx packet size from vconf [%"G_GUINT64_FORMAT"]", rx_bytes); if (netconfig_wifi_get_bytes_statistics(&tx, &rx) == TRUE) total_bytes = rx + rx_bytes; else total_bytes = rx_bytes; - DBG("wifi total rx bytes [%lld]", total_bytes); + DBG("wifi total rx bytes [%"G_GUINT64_FORMAT"]", total_bytes); network_statistics_complete_get_wifi_total_rx_bytes(object, context, total_bytes); return TRUE; -- 2.7.4