From: Dewal Agarwal Date: Tue, 20 Feb 2024 07:59:32 +0000 (+0900) Subject: Add missing format specifier X-Git-Tag: accepted/tizen/unified/20240222.012624^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d67a193626d4da8375323af0250a5f5117994d33;p=platform%2Fcore%2Fapi%2Flibaccount-service.git Add missing format specifier Change-Id: Ia64f165cf206e5204084f1acab977f9e62359c81 Signed-off-by: Dewal Agarwal --- diff --git a/packaging/libaccount-service.spec b/packaging/libaccount-service.spec index 3d663e2..35fa2b1 100644 --- a/packaging/libaccount-service.spec +++ b/packaging/libaccount-service.spec @@ -1,6 +1,6 @@ Name: libaccount-service Summary: Account DB library -Version: 0.4.23 +Version: 0.4.24 Release: 1 Group: Social & Content/API License: Apache-2.0 diff --git a/src/account_offline.c b/src/account_offline.c index dc94889..13309e7 100644 --- a/src/account_offline.c +++ b/src/account_offline.c @@ -445,7 +445,7 @@ ACCOUNT_INTERNAL_API int account_delete_from_db_by_package_name_offline(const ch while (!getpwent_r(&pw, buf, PW_BUF_LEN, &user_pw)) { uid = user_pw->pw_uid; gid = user_pw->pw_gid; - _INFO("user_pw->pw_uid=[%d], user_pw->pw_gid", uid, gid); + _INFO("user_pw->pw_uid=[%d], user_pw->pw_gid[%d]", uid, gid); if (uid > MIN_USER_UID && gid == APP_GID) { sqlite3 *hAccountDB = NULL; return_code = _account_user_db_open(&hAccountDB, 1, uid);