diff options
author | Martin Szulecki | 2014-05-21 15:31:53 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-05-21 15:31:53 +0200 |
commit | 179bd812736f4b5ffea66a0e6ea42eb00a84a0c8 (patch) | |
tree | 5fc5569c863c0453030d3cdedb451d5f1ef823fc | |
parent | df51f6cfb7f73b159e7c7d704b9e59ef09f94b3e (diff) | |
download | libimobiledevice-179bd812736f4b5ffea66a0e6ea42eb00a84a0c8.tar.gz libimobiledevice-179bd812736f4b5ffea66a0e6ea42eb00a84a0c8.tar.bz2 |
Silence compiler warning about format strings using PRIu64
-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; |