Add missing format specifier 31/306331/1 accepted/tizen_unified accepted/tizen_unified_toolchain accepted/tizen_unified_x accepted/tizen/unified/20240222.012624 accepted/tizen/unified/toolchain/20240311.065120 accepted/tizen/unified/x/20240222.211102
authorDewal Agarwal <d1.agarwal@samsung.com>
Tue, 20 Feb 2024 07:59:32 +0000 (16:59 +0900)
committerDewal Agarwal <d1.agarwal@samsung.com>
Tue, 20 Feb 2024 07:59:32 +0000 (16:59 +0900)
Change-Id: Ia64f165cf206e5204084f1acab977f9e62359c81
Signed-off-by: Dewal Agarwal <d1.agarwal@samsung.com>
packaging/libaccount-service.spec
src/account_offline.c

index 3d663e2..35fa2b1 100644 (file)
@@ -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
index dc94889..13309e7 100644 (file)
@@ -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);