summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2015-09-01 16:05:47 -0400
committerPaul Moore <pmoore@redhat.com>2015-09-01 16:05:47 -0400
commit61c28579a984a6c4bd87ec585dc6d5cd4cc0e702 (patch)
treee6b4726e9433ff84c21d3eaf0012804e51b66545
parent13386c1fd34834b6c9d46d36c43616b623736a93 (diff)
downloadlibseccomp-61c28579a984a6c4bd87ec585dc6d5cd4cc0e702.tar.gz
db: fix a minor style problem
Signed-off-by: Paul Moore <pmoore@redhat.com>
-rw-r--r--src/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.c b/src/db.c
index 92ae958..127cc02 100644
--- a/src/db.c
+++ b/src/db.c
@@ -360,7 +360,7 @@ int db_action_valid(uint32_t action)
else if (action == SCMP_ACT_TRAP)
return 0;
else if ((action == SCMP_ACT_ERRNO(action & 0x0000ffff)) &&
- ((action & 0x0000ffff) < MAX_ERRNO))
+ ((action & 0x0000ffff) < MAX_ERRNO))
return 0;
else if (action == SCMP_ACT_TRACE(action & 0x0000ffff))
return 0;