diff options
Diffstat (limited to 'src/bin/pg_basebackup/bbstreamer_gzip.c')
-rw-r--r-- | src/bin/pg_basebackup/bbstreamer_gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/bbstreamer_gzip.c b/src/bin/pg_basebackup/bbstreamer_gzip.c index c3455ffbddf..ad1b79e6f2b 100644 --- a/src/bin/pg_basebackup/bbstreamer_gzip.c +++ b/src/bin/pg_basebackup/bbstreamer_gzip.c @@ -113,7 +113,7 @@ bbstreamer_gzip_writer_new(char *pathname, FILE *file, return &streamer->base; #else - pg_fatal("this build does not support gzip compression"); + pg_fatal("this build does not support compression with %s", "gzip"); return NULL; /* keep compiler quiet */ #endif } @@ -246,7 +246,7 @@ bbstreamer_gzip_decompressor_new(bbstreamer *next) return &streamer->base; #else - pg_fatal("this build does not support gzip compression"); + pg_fatal("this build does not support compression with %s", "gzip"); return NULL; /* keep compiler quiet */ #endif } |