Skip to content

Commit 5e12fec

Browse files
committed
Eliminate unsued varaibles
1 parent 05e3211 commit 5e12fec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/data.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ page_may_be_compressed(Page page, CompressAlg alg)
127127
phdr->pd_special == MAXALIGN(phdr->pd_special)))
128128
{
129129
/* ... end only if it is invalid, then do more checks */
130-
int major, middle, minor;
131-
if ( parse_program_version(current.program_version) >= 20023)
130+
if (parse_program_version(current.program_version) >= 20023)
132131
{
133132
/* Versions 2.0.23 and higher don't have such bug */
134133
return false;

0 commit comments

Comments
 (0)