tool_cb_prg: fix double-promotion warning
clang complains: tool_cb_prg.c:86:22: error: implicit conversion increases floating-point precision: 'float' to 'double' [-Werror,-Wdouble-promotion] Fix this by using a double instead of a float constant.
This commit is contained in:
Родитель
6cba8dacea
Коммит
c3513f7e83
|
@ -83,7 +83,7 @@ int tool_progress_cb(void *clientp,
|
|||
}
|
||||
else if(point != bar->prev) {
|
||||
frac = (double)point / (double)total;
|
||||
percent = frac * 100.0f;
|
||||
percent = frac * 100.0;
|
||||
barwidth = bar->width - 7;
|
||||
num = (int) (((double)barwidth) * frac);
|
||||
if(num > MAX_BARLENGTH)
|
||||
|
|
Загрузка…
Ссылка в новой задаче