From 056f7478905584694bd6e5a0c05185ed60981de2 Mon Sep 17 00:00:00 2001 From: "saerome.kim" Date: Tue, 30 Jul 2019 20:14:47 +0900 Subject: [PATCH] Fixed build error Change-Id: I6c8f6ad3e8dcc51e7f42c84336deb3adb91b9bcd Signed-off-by: saerome.kim --- ua-daemon/src/ua-manager-db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ua-daemon/src/ua-manager-db.c b/ua-daemon/src/ua-manager-db.c index 20b5ca1..68d8ceb 100644 --- a/ua-daemon/src/ua-manager-db.c +++ b/ua-daemon/src/ua-manager-db.c @@ -127,7 +127,7 @@ static int __check_integrity(void) FUNC_EXIT; return UAM_ERROR_DB_FAILED; } - UAM_DBG("Database size: %d", db_size); + UAM_DBG("Database size: %zd", db_size); res = sqlite3_exec(database, "PRAGMA integrity_check", __uam_db_check_integrity_cb, 0, 0); if (res != SQLITE_OK) { -- 2.7.4