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:
@ -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
|
||||||
|
Reference in New Issue
Block a user