diff options
| author | 2020-12-23 17:19:26 -0800 | |
|---|---|---|
| committer | 2022-04-22 13:10:57 +0200 | |
| commit | 5f382824398e088fdb68a4bd104613d58c4197f5 (patch) | |
| tree | 4d03806432331423aee5e80f523386dc31b96715 | |
| parent | 7c4858aa453d918039f4ab05d7776881f637a187 (diff) | |
| download | libimobiledevice-5f382824398e088fdb68a4bd104613d58c4197f5.tar.gz libimobiledevice-5f382824398e088fdb68a4bd104613d58c4197f5.tar.bz2 | |
[clang-tidy] idevicebackup2: use uppercase numeric literals
Found with readability-uppercase-literal-suffix
Signed-off-by: Rosen Penev <rosenp@gmail.com>
| -rw-r--r-- | tools/idevicebackup2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index 7cc0535..2f8f1fa 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c | |||
| @@ -2486,7 +2486,7 @@ checkpoint: | |||
| 2486 | 2486 | ||
| 2487 | /* print status */ | 2487 | /* print status */ |
| 2488 | if ((overall_progress > 0) && !progress_finished) { | 2488 | if ((overall_progress > 0) && !progress_finished) { |
| 2489 | if (overall_progress >= 100.0f) { | 2489 | if (overall_progress >= 100.0F) { |
| 2490 | progress_finished = 1; | 2490 | progress_finished = 1; |
| 2491 | } | 2491 | } |
| 2492 | print_progress_real(overall_progress, 0); | 2492 | print_progress_real(overall_progress, 0); |
