mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
remove some more -Wshadow warnings
Change-Id: Icaba088b9a74732137bd35d82854eed858ec88f8
This commit is contained in:
parent
522e9d6108
commit
126c035f3f
@ -878,8 +878,8 @@ int main(int argc, const char *argv[]) {
|
|||||||
picture.progress_hook = (show_progress && !quiet) ? ProgressReport : NULL;
|
picture.progress_hook = (show_progress && !quiet) ? ProgressReport : NULL;
|
||||||
|
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
const double time = StopwatchReadAndReset(&stop_watch);
|
const double read_time = StopwatchReadAndReset(&stop_watch);
|
||||||
fprintf(stderr, "Time to read input: %.3fs\n", time);
|
fprintf(stderr, "Time to read input: %.3fs\n", read_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open the output
|
// Open the output
|
||||||
@ -943,8 +943,8 @@ int main(int argc, const char *argv[]) {
|
|||||||
goto Error;
|
goto Error;
|
||||||
}
|
}
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
const double time = StopwatchReadAndReset(&stop_watch);
|
const double encode_time = StopwatchReadAndReset(&stop_watch);
|
||||||
fprintf(stderr, "Time to encode picture: %.3fs\n", time);
|
fprintf(stderr, "Time to encode picture: %.3fs\n", encode_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write info
|
// Write info
|
||||||
|
Loading…
Reference in New Issue
Block a user