fix no-return function call in cipher.c from commit 978f869b99

Reported-by: buildfarm member sifaka

Backpatch-through: master
This commit is contained in:
Bruce Momjian 2020-12-25 14:40:46 -05:00
parent 26d60f2a6c
commit 8e59813e22
1 changed files with 1 additions and 1 deletions

View 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)