diff options
| author | 2013-05-23 20:17:13 +0200 | |
|---|---|---|
| committer | 2013-05-23 20:17:13 +0200 | |
| commit | cfa1eb9f7d472ad0248e60000133b8f23a5f8125 (patch) | |
| tree | 925900325315a7e9243afdefc92b4bbb7653d425 /tools/ideviceimagemounter.c | |
| parent | b1c41365ef0dbf294b12b691d48d6988e578d66d (diff) | |
| download | libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.gz libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.bz2 | |
Silence compiler warnings for win32 builds
Diffstat (limited to 'tools/ideviceimagemounter.c')
| -rw-r--r-- | tools/ideviceimagemounter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ideviceimagemounter.c b/tools/ideviceimagemounter.c index e57d83a..09363fd 100644 --- a/tools/ideviceimagemounter.c +++ b/tools/ideviceimagemounter.c | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | #include <libgen.h> | 29 | #include <libgen.h> |
| 30 | #include <time.h> | 30 | #include <time.h> |
| 31 | #include <sys/time.h> | 31 | #include <sys/time.h> |
| 32 | #include <inttypes.h> | ||
| 32 | 33 | ||
| 33 | #include <libimobiledevice/libimobiledevice.h> | 34 | #include <libimobiledevice/libimobiledevice.h> |
| 34 | #include <libimobiledevice/lockdown.h> | 35 | #include <libimobiledevice/lockdown.h> |
| @@ -182,7 +183,7 @@ static void plist_node_to_string(plist_t node) | |||
| 182 | 183 | ||
| 183 | case PLIST_UINT: | 184 | case PLIST_UINT: |
| 184 | plist_get_uint_val(node, &u); | 185 | plist_get_uint_val(node, &u); |
| 185 | printf("%llu\n", (long long)u); | 186 | printf("%"PRIu64"\n", (long long)u); |
| 186 | break; | 187 | break; |
| 187 | 188 | ||
| 188 | case PLIST_REAL: | 189 | case PLIST_REAL: |
