1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Fix obviously too quickly applied fix to zlib issue

This commit is contained in:
Magnus Hagander
2016-10-23 16:07:31 +02:00
parent 9ae6713cdf
commit a5c17c1dce

View File

@ -415,10 +415,11 @@ tar_write(Walfile f, const void *buf, size_t count)
((TarMethodFile *) f)->currpos += count; ((TarMethodFile *) f)->currpos += count;
return count; return count;
} }
#endif #else
else else
/* Can't happen - compression enabled with no libz */ /* Can't happen - compression enabled with no libz */
return -1; return -1;
#endif
} }
static bool static bool