From c9e95e7be2840c0752bb1210baae13ebc06cf22d Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Thu, 6 Jul 2017 11:25:46 +0200 Subject: [PATCH] make indent --- caps.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/caps.c b/caps.c index e11372c..bd84cc6 100644 --- a/caps.c +++ b/caps.c @@ -152,7 +152,8 @@ bool capsInitNs(struct nsjconf_t *nsjconf) for (size_t i = 0; i < ARRAYSIZE(capNames); i++) { cap_flag_value_t v = capsGetCap(cap_orig, capNames[i].val, CAP_PERMITTED); if (v == CAP_SET) { - LOG_D("Adding '%s' capability to the inheritable set", capNames[i].name); + LOG_D("Adding '%s' capability to the inheritable set", + capNames[i].name); } capsSetCap(cap_new, capNames[i].val, CAP_INHERITABLE, v); } @@ -167,7 +168,8 @@ bool capsInitNs(struct nsjconf_t *nsjconf) capsFree(cap_new); return false; } - LOG_D("Adding '%s' capability to the inheritable set", capsValToStr(p->val)); + LOG_D("Adding '%s' capability to the inheritable set", + capsValToStr(p->val)); capsSetCap(cap_new, p->val, CAP_INHERITABLE, CAP_SET); } }