summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/utils/pg_lzcompress.h (renamed from 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/utils/pg_lzcompress.h
index f36d2da8eea..4af24a32a49 100644
--- a/src/include/common/pg_lzcompress.h
+++ b/src/include/utils/pg_lzcompress.h
@@ -3,7 +3,7 @@
*
* Definitions for the builtin LZ compressor
*
- * src/include/common/pg_lzcompress.h
+ * src/include/utils/pg_lzcompress.h
* ----------
*/
@@ -107,6 +107,6 @@ extern const PGLZ_Strategy *const PGLZ_strategy_always;
*/
extern bool pglz_compress(const char *source, int32 slen, PGLZ_Header *dest,
const PGLZ_Strategy *strategy);
-extern bool pglz_decompress(const PGLZ_Header *source, char *dest);
+extern void pglz_decompress(const PGLZ_Header *source, char *dest);
#endif /* _PG_LZCOMPRESS_H_ */