diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2017-08-18 15:38:16 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-18 23:51:39 +0100 |
commit | 5548f9c87c6a10cda2baf6f198762380e55f6ae2 (patch) | |
tree | 0ecbd222d3673c4c73407817f1f21a60d33bf897 /meta | |
parent | 4473c9e846826bfb4f48cec9c6c7b1cad6666bb3 (diff) | |
download | openembedded-core-contrib-5548f9c87c6a10cda2baf6f198762380e55f6ae2.tar.gz |
cve-check-tool: Fix progress bar patch for curl 7.55
CURL_FORMAT_OFF_T does not seem to exist anymore, use
CURL_FORMAT_CURL_OFF_T instead. This works with old and new curl.
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/cve-check-tool/files/0001-print-progress-in-percent-when-downloading-CVE-db.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/cve-check-tool/files/0001-print-progress-in-percent-when-downloading-CVE-db.patch b/meta/recipes-devtools/cve-check-tool/files/0001-print-progress-in-percent-when-downloading-CVE-db.patch index 0510e3ae0e7..8ea6f686e3f 100644 --- a/meta/recipes-devtools/cve-check-tool/files/0001-print-progress-in-percent-when-downloading-CVE-db.patch +++ b/meta/recipes-devtools/cve-check-tool/files/0001-print-progress-in-percent-when-downloading-CVE-db.patch @@ -38,7 +38,7 @@ index 06d4b30..0fe6d76 100644 + if (dltotal && percent && percent->end >= percent->start) { + unsigned int diff = percent->end - percent->start; + if (diff) { -+ fprintf(stderr,"completed: "CURL_FORMAT_OFF_T"%%\r", percent->start + (diff * dlnow / dltotal)); ++ fprintf(stderr,"completed: %"CURL_FORMAT_CURL_OFF_T"%%\r", percent->start + (diff * dlnow / dltotal)); + } + } + |