diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-12-25 14:40:46 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-12-25 14:40:46 -0500 |
commit | 8e59813e2287db90044537b1093c0869020ffa4a (patch) | |
tree | 3998ce883b4d481f9e7d56ed6e86fc75947e4189 /src | |
parent | 26d60f2a6c1c93838a49ac4d685652b1bc92f547 (diff) | |
download | postgresql-8e59813e2287db90044537b1093c0869020ffa4a.tar.gz postgresql-8e59813e2287db90044537b1093c0869020ffa4a.zip |
fix no-return function call in cipher.c from commit 978f869b99
Reported-by: buildfarm member sifaka
Backpatch-through: master
Diffstat (limited to 'src')
-rw-r--r-- | src/common/cipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |