From: Carl Hetherington Date: Mon, 2 Dec 2019 13:50:31 +0000 (+0000) Subject: Try to do the previous commit in a more compatible way. X-Git-Tag: v2.14.17 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=d355dcc4f82472a83f542567d4bf7bce7de6884e Try to do the previous commit in a more compatible way. --- diff --git a/src/lib/cinema_kdms.cc b/src/lib/cinema_kdms.cc index 158ce8179..2d1f3e273 100644 --- a/src/lib/cinema_kdms.cc +++ b/src/lib/cinema_kdms.cc @@ -74,8 +74,10 @@ CinemaKDMs::make_zip_file (boost::filesystem::path zip_file, dcp::NameFormat nam } if (zip_close (zip) == -1) { - zip_error_t* e = zip_get_error (zip); - throw runtime_error (String::compose("failed to close ZIP archive (%1, %2)", zip_error_code_zip(e), zip_error_code_system(e))); + int zep; + int sep; + zip_error_get (zip, &zep, &sep); + throw runtime_error (String::compose("failed to close ZIP archive (%1, %2)", zep, sep)); } }