From 6c5306e312bcfd254cf654f88c04e34ba786df3d Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 24 Apr 2008 18:39:57 +0300 Subject: [PATCH] Fix wrong return type (uint32_t -> bool). --- src/liblzma/lz/lz_encoder.c | 2 +- src/liblzma/lz/lz_encoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liblzma/lz/lz_encoder.c b/src/liblzma/lz/lz_encoder.c index 488095c..fd1be9a 100644 --- a/src/liblzma/lz/lz_encoder.c +++ b/src/liblzma/lz/lz_encoder.c @@ -47,7 +47,7 @@ /// Calculate certain match finder properties and validate the calculated /// values. This is as its own function, because *num_items is needed to /// calculate memory requirements in common/memory.c. -extern uint32_t +extern bool lzma_lz_encoder_hash_properties(lzma_match_finder match_finder, uint32_t history_size, uint32_t *restrict hash_mask, uint32_t *restrict hash_size_sum, uint32_t *restrict num_items) diff --git a/src/liblzma/lz/lz_encoder.h b/src/liblzma/lz/lz_encoder.h index 1e47af2..b13e4b8 100644 --- a/src/liblzma/lz/lz_encoder.h +++ b/src/liblzma/lz/lz_encoder.h @@ -132,7 +132,7 @@ struct lzma_lz_encoder_s { /// Calculates -extern uint32_t lzma_lz_encoder_hash_properties(lzma_match_finder match_finder, +extern bool lzma_lz_encoder_hash_properties(lzma_match_finder match_finder, uint32_t history_size, uint32_t *restrict hash_mask, uint32_t *restrict hash_size_sum, uint32_t *restrict num_items); -- 2.39.2