From fdb56f8a0b6a5fd6a2072a525e228596c264883e Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: May 25 2017 18:38:45 +0000 Subject: Appease gcc-7's fallthrough detection Signed-off-by: Robbie Harwood Reviewed-by: Simo Sorce Merges: #188 --- diff --git a/src/gp_export.c b/src/gp_export.c index 3a927c9..f44da50 100644 --- a/src/gp_export.c +++ b/src/gp_export.c @@ -888,7 +888,8 @@ static uint32_t gp_export_creds_linux(uint32_t *min, gss_name_t name, if (res != NULL) { break; } - /* fall through as ret == NULL is equivalent to ENOENT */ + /* ret == NULL is equivalent to ENOENT */ + /* fall through */ case ENOENT: case ESRCH: free(pwbuf);