From: Dewal Agarwal Date: Thu, 16 Jul 2020 09:54:37 +0000 (+0530) Subject: Fix missing print argument X-Git-Tag: submit/tizen/20200721.051544^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_6.0_unified;p=platform%2Fcore%2Fapi%2Flibaccount-service.git Fix missing print argument - Causes uninitialised stack memory error Change-Id: I565b7ff0a13c7e4d9327f13e27ad2cd61594aa0c --- diff --git a/src/account.c b/src/account.c index 3891e6c..315fa03 100644 --- a/src/account.c +++ b/src/account.c @@ -1590,14 +1590,14 @@ int _account_query_account_for_account_id(int account_db_id, account_h *account, ACCOUNT_API int account_query_account_by_account_id(int account_db_id, account_h *account) { - _INFO("account_query_account_by_account_id - account_db_id[%d]"); + _INFO("account_query_account_by_account_id - account_db_id[%d]", account_db_id); return _account_query_account_for_account_id(account_db_id, account, false); } ACCOUNT_API int account_query_deleted_account_info_by_account_id(int account_db_id, account_h *account) { - _INFO("account_query_deleted_account_info_by_account_id - account_db_id[%d]"); + _INFO("account_query_deleted_account_info_by_account_id - account_db_id[%d]", account_db_id); return _account_query_account_for_account_id(account_db_id, account, true); }