diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compression.c | 4 | ||||
-rw-r--r-- | src/common/cryptohash_openssl.c | 1 | ||||
-rw-r--r-- | src/common/exec.c | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/common/compression.c b/src/common/compression.c index 632fae61442..da3c291c0ff 100644 --- a/src/common/compression.c +++ b/src/common/compression.c @@ -72,7 +72,7 @@ get_compress_algorithm_name(pg_compress_algorithm algorithm) /* no default, to provoke compiler warnings if values are added */ } Assert(false); - return "???"; /* placate compiler */ + return "???"; /* placate compiler */ } /* @@ -93,7 +93,7 @@ get_compress_algorithm_name(pg_compress_algorithm algorithm) */ void parse_compress_specification(pg_compress_algorithm algorithm, char *specification, - pg_compress_specification *result) + pg_compress_specification *result) { int bare_level; char *bare_level_endp; diff --git a/src/common/cryptohash_openssl.c b/src/common/cryptohash_openssl.c index 8e76ffdee99..2fb29b1f855 100644 --- a/src/common/cryptohash_openssl.c +++ b/src/common/cryptohash_openssl.c @@ -185,6 +185,7 @@ pg_cryptohash_init(pg_cryptohash_ctx *ctx) { ctx->errreason = SSLerrmessage(ERR_get_error()); ctx->error = PG_CRYPTOHASH_ERROR_OPENSSL; + /* * The OpenSSL error queue should normally be empty since we've * consumed an error, but cipher initialization can in FIPS-enabled diff --git a/src/common/exec.c b/src/common/exec.c index 289b1f26b86..9da588daf91 100644 --- a/src/common/exec.c +++ b/src/common/exec.c @@ -35,7 +35,7 @@ /* Inhibit mingw CRT's auto-globbing of command line arguments */ #if defined(WIN32) && !defined(_MSC_VER) -extern int _CRT_glob = 0; /* 0 turns off globbing; 1 turns it on */ +extern int _CRT_glob = 0; /* 0 turns off globbing; 1 turns it on */ #endif /* |