Skip to content

Commit

Permalink
Fixed a bug in the blocksize argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Danixu committed Apr 10, 2024
1 parent 4cb3479 commit e86e881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ziso.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ int get_options(
}
else
{
options.blockSize = (uint8_t)temp_argument;
options.blockSize = (uint32_t)temp_argument;
options.blockSizeFixed = true;
}
}
Expand Down

0 comments on commit e86e881

Please sign in to comment.