summaryrefslogtreecommitdiffstats
path: root/tools/idevicebackup2.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-05-23 20:17:13 +0200
committerGravatar Martin Szulecki2013-05-23 20:17:13 +0200
commitcfa1eb9f7d472ad0248e60000133b8f23a5f8125 (patch)
tree925900325315a7e9243afdefc92b4bbb7653d425 /tools/idevicebackup2.c
parentb1c41365ef0dbf294b12b691d48d6988e578d66d (diff)
downloadlibimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.gz
libimobiledevice-cfa1eb9f7d472ad0248e60000133b8f23a5f8125.tar.bz2
Silence compiler warnings for win32 builds
Diffstat (limited to 'tools/idevicebackup2.c')
-rw-r--r--tools/idevicebackup2.c3
1 files changed, 1 insertions, 2 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);