浏览代码

make check-spaces fix

Cristian Toader 12 年之前
父节点
当前提交
b121ca581d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/common/sandbox.c

+ 2 - 2
src/common/sandbox.c

@@ -185,14 +185,14 @@ sb_accept4(scmp_filter_ctx ctx, sandbox_cfg_t *filter)
 
 #ifdef __i386__
   rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketcall), 1,
-		  SCMP_CMP(0, SCMP_CMP_EQ, 18));
+      SCMP_CMP(0, SCMP_CMP_EQ, 18));
   if (rc) {
     return rc;
   }
 #endif
 
   rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(accept4), 1,
-		  SCMP_CMP(3, SCMP_CMP_EQ, SOCK_CLOEXEC));
+      SCMP_CMP(3, SCMP_CMP_EQ, SOCK_CLOEXEC));
   if (rc) {
     return rc;
   }