Skip to content

Commit

Permalink
Merge pull request #15 from probonopd/master
Browse files Browse the repository at this point in the history
Fix warning about sqfs_off_t
  • Loading branch information
chipturner committed Oct 10, 2016
2 parents 7a7480e + 065b807 commit 1f98030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extract.c
Expand Up @@ -137,7 +137,7 @@ int main(int argc, char *argv[]) {

// Read the file in chunks
off_t bytes_already_read = 0;
size_t bytes_at_a_time = 64*1024;
sqfs_off_t bytes_at_a_time = 64*1024;
FILE * f;
f = fopen (prefixed_path_to_extract, "w+");
if (f == NULL)
Expand Down

0 comments on commit 1f98030

Please sign in to comment.