Fix wrong print format 83/218083/1 submit/tizen_5.5/20191119.081047
authorSeonah Moon <seonah1.moon@samsung.com>
Tue, 19 Nov 2019 08:02:54 +0000 (17:02 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Tue, 19 Nov 2019 08:03:00 +0000 (17:03 +0900)
Change-Id: Ic57635d6f6bb3fda1f6abce2f14c0ab10b234f7f

src/network-statistics.c

index cc8f803..d948882 100755 (executable)
@@ -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;