From 8e59813e2287db90044537b1093c0869020ffa4a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 25 Dec 2020 14:40:46 -0500 Subject: [PATCH] fix no-return function call in cipher.c from commit 978f869b99 Reported-by: buildfarm member sifaka Backpatch-through: master --- src/common/cipher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/cipher.c b/src/common/cipher.c index a05d8b6323..393b062bc3 100644 --- a/src/common/cipher.c +++ b/src/common/cipher.c @@ -19,7 +19,7 @@ #include "common/cipher.h" -static void cipher_failure(void); +static void cipher_failure(void) pg_attribute_noreturn(); PgCipherCtx * pg_cipher_ctx_create(int cipher, uint8 *key, int klen, bool enc)