Skip to content

Commit

Permalink
Merge branch 'seekTable' of github.com:facebook/zstd into seekTable
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Mar 4, 2021
2 parents 16ec1cf + 713d495 commit 6e390ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/seekable_format/tests/seekable_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ int main(int argc, const char** argv)
ZSTD_seekable_CStream* const zscs = ZSTD_seekable_createCStream();
assert(zscs != NULL);

{ size_t const initStatus = ZSTD_seekable_initCStream(zscs, 9, 0 /* checksumFlag */, inSize /* maxFrameSize */);
{ size_t const initStatus = ZSTD_seekable_initCStream(zscs, 9, 0 /* checksumFlag */, (unsigned)inSize /* maxFrameSize */);
assert(!ZSTD_isError(initStatus));
}

Expand Down

0 comments on commit 6e390ce

Please sign in to comment.