diff options
author | Martin Szulecki | 2013-05-23 20:17:13 +0200 |
---|---|---|
committer | Martin Szulecki | 2013-05-23 20:17:13 +0200 |
commit | cfa1eb9f7d472ad0248e60000133b8f23a5f8125 (patch) | |
tree | 925900325315a7e9243afdefc92b4bbb7653d425 /tools | |
parent | b1c41365ef0dbf294b12b691d48d6988e578d66d (diff) | |
download | libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.gz libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.bz2 |
Silence compiler warnings for win32 builds
Diffstat (limited to 'tools')
-rw-r--r-- | tools/idevicebackup2.c | 3 | ||||
-rw-r--r-- | tools/ideviceimagemounter.c | 3 | ||||
-rw-r--r-- | tools/ideviceinfo.c | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index a0ffc9b..697e276 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c @@ -47,6 +47,7 @@ #ifdef WIN32 #include <windows.h> +#include <conio.h> #define sleep(x) Sleep(x*1000) #else #include <termios.h> @@ -1968,7 +1969,6 @@ checkpoint: char *oldpath = build_path(backup_directory, key, NULL); #ifdef WIN32 - struct stat st; if ((stat(newpath, &st) == 0) && S_ISDIR(st.st_mode)) RemoveDirectory(newpath); else @@ -2023,7 +2023,6 @@ checkpoint: char *newpath = build_path(backup_directory, str, NULL); free(str); #ifdef WIN32 - struct stat st; int res = 0; if ((stat(newpath, &st) == 0) && S_ISDIR(st.st_mode)) res = RemoveDirectory(newpath); 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 @@ #include <libgen.h> #include <time.h> #include <sys/time.h> +#include <inttypes.h> #include <libimobiledevice/libimobiledevice.h> #include <libimobiledevice/lockdown.h> @@ -182,7 +183,7 @@ static void plist_node_to_string(plist_t node) case PLIST_UINT: plist_get_uint_val(node, &u); - printf("%llu\n", (long long)u); + printf("%"PRIu64"\n", (long long)u); break; case PLIST_REAL: diff --git a/tools/ideviceinfo.c b/tools/ideviceinfo.c index c8d4cac..0c23d3c 100644 --- a/tools/ideviceinfo.c +++ b/tools/ideviceinfo.c @@ -25,6 +25,7 @@ #include <stdlib.h> #include <time.h> #include <sys/time.h> +#include <inttypes.h> #include <libimobiledevice/libimobiledevice.h> #include <libimobiledevice/lockdown.h> @@ -177,7 +178,7 @@ static void plist_node_to_string(plist_t node) case PLIST_UINT: plist_get_uint_val(node, &u); - printf("%llu\n", (long long)u); + printf("%"PRIu64"\n", (long long)u); break; case PLIST_REAL: |