summaryrefslogtreecommitdiffstats
path: root/src/libirecovery.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libirecovery.c')
-rw-r--r--src/libirecovery.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c
index d632b63..fa0f417 100644
--- a/src/libirecovery.c
+++ b/src/libirecovery.c
@@ -1129,9 +1129,9 @@ IRECV_API irecv_error_t irecv_send_file(irecv_client_t client, const char* filen
1129 return IRECV_E_FILE_NOT_FOUND; 1129 return IRECV_E_FILE_NOT_FOUND;
1130 } 1130 }
1131 1131
1132 fseek(file, 0, SEEK_END); 1132 fseeko(file, 0, SEEK_END);
1133 long length = ftell(file); 1133 long length = ftello(file);
1134 fseek(file, 0, SEEK_SET); 1134 fseeko(file, 0, SEEK_SET);
1135 1135
1136 char* buffer = (char*) malloc(length); 1136 char* buffer = (char*) malloc(length);
1137 if (buffer == NULL) { 1137 if (buffer == NULL) {