summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;