diff options
Diffstat (limited to 'meta/recipes-devtools/cve-check-tool')
-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 0510e3ae0e..8ea6f686e3 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 | |||
38 | + if (dltotal && percent && percent->end >= percent->start) { | 38 | + if (dltotal && percent && percent->end >= percent->start) { |
39 | + unsigned int diff = percent->end - percent->start; | 39 | + unsigned int diff = percent->end - percent->start; |
40 | + if (diff) { | 40 | + if (diff) { |
41 | + fprintf(stderr,"completed: "CURL_FORMAT_OFF_T"%%\r", percent->start + (diff * dlnow / dltotal)); | 41 | + fprintf(stderr,"completed: %"CURL_FORMAT_CURL_OFF_T"%%\r", percent->start + (diff * dlnow / dltotal)); |
42 | + } | 42 | + } |
43 | + } | 43 | + } |
44 | + | 44 | + |