summaryrefslogtreecommitdiffstats
path: root/tools/idevicebackup.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-03-21 14:55:15 +0100
committerGravatar Martin Szulecki2012-03-21 14:55:15 +0100
commit662ef2073cb5ece7bb558700f344ea10b431fb64 (patch)
tree9a2289cb95a2cd89cf12651a18274a0c0f51a96e /tools/idevicebackup.c
parentf322dfcb9718b80f9410ebafd8d159e5fc116a88 (diff)
downloadlibimobiledevice-662ef2073cb5ece7bb558700f344ea10b431fb64.tar.gz
libimobiledevice-662ef2073cb5ece7bb558700f344ea10b431fb64.tar.bz2
tools: Fix compiler warnings for idevicebackup and idevicebackup2
Diffstat (limited to 'tools/idevicebackup.c')
-rw-r--r--tools/idevicebackup.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/idevicebackup.c b/tools/idevicebackup.c
index 159f3b1..26771f8 100644
--- a/tools/idevicebackup.c
+++ b/tools/idevicebackup.c
@@ -35,6 +35,8 @@
#include <gcrypt.h>
#endif
#include <unistd.h>
+#include <ctype.h>
+#include <time.h>
#include <libimobiledevice/libimobiledevice.h>
#include <libimobiledevice/lockdown.h>
@@ -228,14 +230,14 @@ static void notify_cb(const char *notification, void *userdata)
static char *str_toupper(char* str)
{
char *res = strdup(str);
- int i;
+ unsigned int i;
for (i = 0; i < strlen(res); i++) {
res[i] = toupper(res[i]);
}
return res;
}
-char* build_path(const char* elem, ...)
+static char* build_path(const char* elem, ...)
{
if (!elem) return NULL;
va_list args;