Skip to content

Commit

Permalink
Fixed: Bad quote usage in bz3_decode_block
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Dec 14, 2024
1 parent 6e4f12d commit d4971ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/libbz3.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ BZIP3_API int32_t bz3_encode_block(struct bz3_state * state, uint8_t * buffer, i
* If `buffer_size` is too small, `BZ3_ERR_DATA_SIZE_TOO_SMALL` will be returned.
* The size must not exceed the block size associated with the state.
*
* @param buffer_size The size of the buffer at `buffer'
* @param size The size of the compressed data in `buffer'
* @param buffer_size The size of the buffer at 'buffer'
* @param size The size of the compressed data in 'buffer'
* @param orig_size The original size of the data before compression.
*/
BZIP3_API int32_t bz3_decode_block(struct bz3_state * state, uint8_t * buffer, size_t buffer_size, int32_t size, int32_t orig_size);
Expand Down

0 comments on commit d4971ec

Please sign in to comment.