From bb07b95993b4a5f82db00355c89527b03093ae0c Mon Sep 17 00:00:00 2001 From: Albert S Date: Sat, 5 Jun 2021 11:55:50 +0200 Subject: [PATCH] Fix stray semicolon --- qssb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qssb.h b/qssb.h index 41ac1ee..6d99863 100644 --- a/qssb.h +++ b/qssb.h @@ -504,7 +504,7 @@ static int drop_caps() drop[1].inheritable = 0; if(capset(&h, drop) == -1) { - QSSB_LOG_ERROR("Failed to drop capabilities: %s\n", strerror(errno));; + QSSB_LOG_ERROR("Failed to drop capabilities: %s\n", strerror(errno)); return -errno; } return 0;