diff options
author | Rosen Penev | 2020-12-23 17:19:26 -0800 |
---|---|---|
committer | Nikias Bassen | 2022-04-22 13:10:57 +0200 |
commit | 5f382824398e088fdb68a4bd104613d58c4197f5 (patch) | |
tree | 4d03806432331423aee5e80f523386dc31b96715 /tools | |
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>
Diffstat (limited to 'tools')
-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: /* print status */ if ((overall_progress > 0) && !progress_finished) { - if (overall_progress >= 100.0f) { + if (overall_progress >= 100.0F) { progress_finished = 1; } print_progress_real(overall_progress, 0); |