diff options
author | 2020-04-12 21:20:03 -0700 | |
---|---|---|
committer | 2020-04-12 21:25:35 -0700 | |
commit | 10b85ce085e4f2c0d695ee6c92fc26a7c9f456d7 (patch) | |
tree | e18af55ed4722a98c9c14c0f150238e6448fbf03 /src/common.c | |
parent | 05f543df0147c61cb5900586512c882d276d0ed6 (diff) | |
download | idevicerestore-10b85ce085e4f2c0d695ee6c92fc26a7c9f456d7.tar.gz idevicerestore-10b85ce085e4f2c0d695ee6c92fc26a7c9f456d7.tar.bz2 |
fix newly introduced format errors under 64-bit
uint64_t should be used.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/common.c')
-rw-r--r-- | src/common.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c index a1bfd09..6f113c5 100644 --- a/src/common.c +++ b/src/common.c @@ -25,7 +25,6 @@ #include <config.h> #endif -#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |