Skip to content

Commit

Permalink
Version 1.20.3-at.20211001.01. Fix implicit conversion off_t to int.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkiver2 committed Oct 1, 2021
1 parent dc9bec2 commit 21773cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tarball-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.3-at.20210504.01
1.20.3-at.20211001.01
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.3-at.20210504.01
1.20.3-at.20211001.01
2 changes: 1 addition & 1 deletion src/warc.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ static bool
warc_write_block_from_file (FILE *data_in)
{
/* Add the Content-Length header. */
int content_length_i;
off_t content_length_i;
char content_length[MAX_INT_TO_STRING_LEN(off_t)];
size_t buffer_size;
#ifdef HAVE_ZSTD
Expand Down

0 comments on commit 21773cf

Please sign in to comment.