From: Seonah Moon Date: Thu, 22 Jun 2017 02:22:28 +0000 (+0900) Subject: [RQ170613-00091] Fixed invalid format arguments for dlog X-Git-Tag: submit/tizen/20170622.041854^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43c522eb41413b1cb5cccec3ff7310f07fd1bf46;p=platform%2Fcore%2Fapi%2Ftethering.git [RQ170613-00091] Fixed invalid format arguments for dlog Change-Id: Idbb03de04e1fff47248998f9ae7309979688ca1f Signed-off-by: Seonah Moon --- diff --git a/packaging/capi-network-tethering.spec b/packaging/capi-network-tethering.spec index fdf00c4..bfa824b 100644 --- a/packaging/capi-network-tethering.spec +++ b/packaging/capi-network-tethering.spec @@ -1,6 +1,6 @@ Name: capi-network-tethering Summary: Tethering Framework -Version: 1.0.52 +Version: 1.0.53 Release: 1 Group: System/Network License: Apache-2.0 diff --git a/src/tethering.c b/src/tethering.c index 422ac1e..a78d27d 100755 --- a/src/tethering.c +++ b/src/tethering.c @@ -1489,7 +1489,7 @@ API int tethering_create(tethering_h *tethering) *tethering = (tethering_h)th; _tethering_add_handle(th); - INFO("Tethering Handle : 0x%X\n", th); + INFO("Tethering Handle : %p\n", th); INFO("-\n"); return TETHERING_ERROR_NONE; } @@ -1515,7 +1515,7 @@ API int tethering_destroy(tethering_h tethering) __tethering_h *th = (__tethering_h *)tethering; - INFO("Tethering Handle : 0x%X\n", th); + INFO("Tethering Handle : %p\n", th); __disconnect_signals(tethering); _tethering_remove_handle(th);