Skip to content

Commit

Permalink
revert: may cause an issue with older compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Jan 4, 2025
1 parent cafde5c commit ea2f7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sff_convert.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ auto fskip(std::FILE * file_handle, uint64_t length) -> uint64_t
{
/* read given amount of data from a stream and ignore it */
/* used instead of seeking in order to work with pipes */
static constexpr auto blocksize = uint64_t{4096};
static constexpr uint64_t blocksize = 4096;
std::array<char, blocksize> buffer {{}};

uint64_t skipped = 0;
Expand Down

0 comments on commit ea2f7b5

Please sign in to comment.