diff options
author | Nikias Bassen | 2023-04-12 23:25:21 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-04-12 23:25:21 +0200 |
commit | ac69c93e9985fc588270edd50b9749e490c98210 (patch) | |
tree | 08601633e6600a399ddb3905c867202faad7820a | |
parent | e86c2e397e7873503f1986faf22a5e592a2c8dc1 (diff) | |
download | ideviceinstaller-ac69c93e9985fc588270edd50b9749e490c98210.tar.gz ideviceinstaller-ac69c93e9985fc588270edd50b9749e490c98210.tar.bz2 |
Fix compilation
-rw-r--r-- | src/ideviceinstaller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index dfa3e13..caba7f0 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -173,7 +173,7 @@ static void print_apps(plist_t apps) break; case PLIST_INT: plist_get_uint_val(node, &uval); - printf("%llu", uval); + printf("%" PRIu64, uval); break; case PLIST_BOOLEAN: printf("%s", plist_bool_val_is_true(node) ? "true" : "false"); |