From 61c28579a984a6c4bd87ec585dc6d5cd4cc0e702 Mon Sep 17 00:00:00 2001 From: Paul Moore Date: Tue, 1 Sep 2015 16:05:47 -0400 Subject: db: fix a minor style problem Signed-off-by: Paul Moore --- src/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1