From fb07fbd68cd0d328b05adbaa3c4b306497540444 Mon Sep 17 00:00:00 2001 From: Ilia Platone Date: Fri, 21 Dec 2018 16:30:10 +0100 Subject: [PATCH] [tippecanoe] Added missing dependency for libdeflate as git submodule | This work was sponsored by SkySight (@plantain) --- mvt.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mvt.cpp b/mvt.cpp index dca958b..a43c9a7 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -39,10 +39,9 @@ int decompress(std::string const &input, std::string &output) { while (true) { long unsigned int existing_output = 0; - int ret = libdeflate_deflate_decompress_ex(decompressor, + int ret = libdeflate_deflate_decompress(decompressor, next_in, avail_in, next_out, avail_out, - &existing_output, &existing_output); output.resize(existing_output + 2 * avail_in + 100);