Fix wrong log format arguments
[platform/core/appfw/pkgmgr-server.git] / src / pkgmgr-server.c
index d99a76e..a068f38 100644 (file)
@@ -482,7 +482,7 @@ static int __check_csr(const char *path)
        }
 
        if (malware != NULL) {
-               ERR("CSR denied[%d] installation", path);
+               ERR("CSR detected malware from [%s]", path);
                ret = -1;
        }
 
@@ -510,7 +510,7 @@ static int __kill_app(char *appid, uid_t uid)
 
        ret = aul_terminate_pid_for_uid(pid, uid);
        if (ret != AUL_R_OK) {
-               ERR("failed to terminate app(%d)", appid);
+               ERR("failed to terminate app(%s)", appid);
                return -1;
        }