Commit a5c17c1d authored by Magnus Hagander's avatar Magnus Hagander

Fix obviously too quickly applied fix to zlib issue

parent 9ae6713c
...@@ -415,10 +415,11 @@ tar_write(Walfile f, const void *buf, size_t count) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment