Fixed build error due to dlog update. 45/196045/2 accepted/tizen/unified/20181221.125525 submit/tizen/20181221.051348
authorsaerome kim <saerome.kim@samsung.com>
Fri, 21 Dec 2018 04:01:50 +0000 (13:01 +0900)
committersaerome kim <saerome.kim@samsung.com>
Fri, 21 Dec 2018 04:19:01 +0000 (13:19 +0900)
Change-Id: I75b2495ab9747f1e642f0b51eb78ca924c8a9906
Signed-off-by: saerome kim <saerome.kim@samsung.com>
packaging/wifi-mesh-manager.spec
src/wmesh-netlink.c
src/wmesh-softap.c

index eb6f2b6..e75849b 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:          wifi-mesh-manager
 Summary:       Wi-Fi mesh network daemon
-Version:       0.0.7
+Version:       0.0.8
 Release:       1
 Group:      Network & Connectivity/Wireless
 License:    Apache-2.0
index 3b3ca0b..706bfa4 100644 (file)
@@ -1056,7 +1056,7 @@ static int _on_receive_station_info(struct nl_msg *msg, void *arg)
        if (0 != sta_info[NL80211_STA_INFO_T_OFFSET]) {
                station_info->t_offset =
                        (unsigned long long)nla_get_u64(sta_info[NL80211_STA_INFO_T_OFFSET]);
-               WMESH_LOGD("    Toffset:\t%llu us", station_info->t_offset);
+               WMESH_LOGD("    Toffset:\t%"G_GUINT64_FORMAT " us", station_info->t_offset);
        }
 
        if (0 != sta_info[NL80211_STA_INFO_LOCAL_PM]) {
index 63d7b79..ddceb6b 100644 (file)
@@ -425,7 +425,7 @@ static int __write_hostapd_config()
                conf = g_strconcat(old_conf, buf, NULL);
                g_free(old_conf);
        } else {
-               WMESH_LOGD("Open connection [%s]", security); /* LCOV_EXCL_LINE */
+               WMESH_LOGD("Open connection [%d]", security); /* LCOV_EXCL_LINE */
        }
 
        fd = open(HOSTAPD_WMESH_CONF_FILE, O_WRONLY | O_CREAT | O_TRUNC, 0640);