From: Bruce Momjian Date: Fri, 25 Dec 2020 19:40:46 +0000 (-0500) Subject: fix no-return function call in cipher.c from commit 978f869b99 X-Git-Tag: REL_14_BETA1~1081 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=8e59813e2287db90044537b1093c0869020ffa4a;p=postgresql.git fix no-return function call in cipher.c from commit 978f869b99 Reported-by: buildfarm member sifaka Backpatch-through: master --- diff --git a/src/common/cipher.c b/src/common/cipher.c index a05d8b63239..393b062bc39 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)