Skip to content

Commit 2e20ed7

Browse files
committed
fixes
1 parent 48e87d7 commit 2e20ed7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/compression/cm_pglz.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ pglz_cmdecompress(CompressionAmOptions *cmoptions, const struct varlena *value)
145145
VARDATA(result),
146146
VARRAWSIZE_4B_C(value), true);
147147

148-
if (rawsize < 0)
148+
if (rawsize < 0)
149149
elog(ERROR, "pglz: compressed data is corrupted");
150150

151151
SET_VARSIZE(result, rawsize + VARHDRSZ);
@@ -154,7 +154,7 @@ pglz_cmdecompress(CompressionAmOptions *cmoptions, const struct varlena *value)
154154

155155
static struct varlena *
156156
pglz_cmdecompress_slice(CompressionAmOptions *cmoptions, const struct varlena *value,
157-
int32 slicelength)
157+
int32 slicelength)
158158
{
159159
struct varlena *result;
160160
int32 rawsize;

0 commit comments

Comments
 (0)