obexd/client/map.c: In function ‘map_msg_get’: obexd/client/map.c:446:2: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint64_t’ [-Wformat] obexd/client/map.c:446:2: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint64_t’ [-Wformat] --- obexd/client/map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obexd/client/map.c b/obexd/client/map.c index 72c4de4..fe15bab 100644 --- a/obexd/client/map.c +++ b/obexd/client/map.c @@ -443,7 +443,7 @@ static DBusMessage *map_msg_get(DBusConnection *connection, return g_dbus_create_error(message, ERROR_INTERFACE ".InvalidArguments", NULL); - if (snprintf(handle, sizeof(handle), "%u" PRIu64, msg->handle) < 0) + if (snprintf(handle, sizeof(handle), "%" PRIu64, msg->handle) < 0) goto fail; transfer = obc_transfer_get("x-bt/message", handle, target_file, &err); -- 1.8.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html