fix no-return function call in cipher.c from commit 978f869b99
authorBruce Momjian <[email protected]>
Fri, 25 Dec 2020 19:40:46 +0000 (14:40 -0500)
committerBruce Momjian <[email protected]>
Fri, 25 Dec 2020 19:40:46 +0000 (14:40 -0500)
Reported-by: buildfarm member sifaka
Back-through: master

src/common/cipher.c

index a05d8b63239d217e64bec59708c66165c3cc0a15..393b062bc39149cac0031089bc4964f3fc97c85b 100644 (file)
@@ -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)