diff options
author | 2014-10-17 00:25:26 +0200 | |
---|---|---|
committer | 2014-10-21 01:15:37 +0200 | |
commit | c5aef53c60055d9a18349e6fa8b8f135fb89f046 (patch) | |
tree | 4379d4169c20d15b3ad5431a44ff1489475113da /src/download.c | |
parent | 9d44bcf451bf295ee5334233d77a7e80867df999 (diff) | |
download | idevicerestore-c5aef53c60055d9a18349e6fa8b8f135fb89f046.tar.gz idevicerestore-c5aef53c60055d9a18349e6fa8b8f135fb89f046.tar.bz2 |
Fix handling of files larger than 2GB on 32bit systems
Diffstat (limited to 'src/download.c')
-rw-r--r-- | src/download.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/download.c b/src/download.c index 6adc523..82087df 100644 --- a/src/download.c +++ b/src/download.c @@ -27,10 +27,6 @@ #include "download.h" #include "common.h" -#ifdef WIN32 -#define ftello(x) ftell(x) -#endif - typedef struct { int length; char* content; |