qssb_init_policy: explicit cast (for C++)

This commit is contained in:
Albert S. 2019-11-15 21:40:56 +01:00
父節點 ee6bd18027
當前提交 6f1b27ee51
共有 1 個文件被更改,包括 1 次插入1 次删除

2
qssb.h
查看文件

@ -95,7 +95,7 @@ struct qssb_policy
* @returns: default policy */
struct qssb_policy *qssb_init_policy()
{
struct qssb_policy *result = calloc(1, sizeof(struct qssb_policy));
struct qssb_policy *result = (struct qssb_policy *) calloc(1, sizeof(struct qssb_policy));
result->blacklisted_syscalls = default_blacklisted_syscals;
result->drop_caps = 1;
result->not_dumpable = 1;