diff options
-rw-r--r-- | common/utils.c | 2 | ||||
-rw-r--r-- | dev/ideviceheartbeat.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/common/utils.c b/common/utils.c index aa0332d..80f7060 100644 --- a/common/utils.c +++ b/common/utils.c @@ -322,7 +322,7 @@ static void plist_node_print_to_stream(plist_t node, int* indent_level, FILE* st case PLIST_UINT: plist_get_uint_val(node, &u); - fprintf(stream, "%"PRIu64"\n", (long long)u); + fprintf(stream, "%"PRIu64"\n", u); break; case PLIST_REAL: diff --git a/dev/ideviceheartbeat.c b/dev/ideviceheartbeat.c index fe2cdf3..c92ff90 100644 --- a/dev/ideviceheartbeat.c +++ b/dev/ideviceheartbeat.c @@ -21,6 +21,7 @@ #include <stdio.h> #include <string.h> +#include <inttypes.h> #include <signal.h> #include <stdlib.h> @@ -129,7 +130,7 @@ int main(int argc, char *argv[]) plist_get_uint_val(node, &interval); } - printf("> marco: supports_sleepy_time %d, interval %llu\n", b, interval); + printf("> marco: supports_sleepy_time %d, interval %"PRIu64"\n", b, interval); plist_free(message); message = NULL; |