diff options
Diffstat (limited to 'src/include/common/pg_lzcompress.h')
-rw-r--r-- | src/include/common/pg_lzcompress.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/common/pg_lzcompress.h b/src/include/common/pg_lzcompress.h index 279b66ec7c3..555576436cc 100644 --- a/src/include/common/pg_lzcompress.h +++ b/src/include/common/pg_lzcompress.h @@ -84,8 +84,8 @@ extern const PGLZ_Strategy *const PGLZ_strategy_always; * ---------- */ extern int32 pglz_compress(const char *source, int32 slen, char *dest, - const PGLZ_Strategy *strategy); + const PGLZ_Strategy *strategy); extern int32 pglz_decompress(const char *source, int32 slen, char *dest, - int32 rawsize, bool check_complete); + int32 rawsize, bool check_complete); #endif /* _PG_LZCOMPRESS_H_ */ |