Skip to content

Commit

Permalink
tests: Fix make check-syntax error in test 54
Browse files Browse the repository at this point in the history
54-live-binary_tree.c had spaces rather than tabs on
three lines.  Convert them to tabs.

Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
  • Loading branch information
drakenclimber committed Apr 20, 2022
1 parent 3c0dedd commit a379a4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/54-live-binary_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ int main(int argc, char *argv[])
if (ctx == NULL)
return ENOMEM;

rc = seccomp_attr_set(ctx, SCMP_FLTATR_CTL_OPTIMIZE, 2);
if (rc < 0)
goto out;
rc = seccomp_attr_set(ctx, SCMP_FLTATR_CTL_OPTIMIZE, 2);
if (rc < 0)
goto out;
rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(write), 1,
SCMP_A0(SCMP_CMP_EQ, fd));
if (rc != 0)
Expand Down

0 comments on commit a379a4e

Please sign in to comment.