From f2342e7debf396f0fad2b68db46f477266db9932 Mon Sep 17 00:00:00 2001 From: Cheoleun Moon Date: Fri, 7 Dec 2018 13:46:19 +0900 Subject: [PATCH] Fix build error Change-Id: Ib6f1c9696fad512559a16964a485912ff4c25b69 Signed-off-by: Cheoleun Moon --- src/asp-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asp-client.c b/src/asp-client.c index 60e9395..009078a 100755 --- a/src/asp-client.c +++ b/src/asp-client.c @@ -1859,7 +1859,7 @@ static GVariant* __g_hash_keys_to_g_variant(GHashTable *hash) g_hash_table_iter_init(&iter, hash); while (g_hash_table_iter_next(&iter, &key, &value)) { - ASP_LOGE("key [%s]", key); + ASP_LOGE("key [%s]", (char*)key); g_variant_builder_add(&builder, "s", key); } -- 2.34.1