diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-02 20:14:03 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-02-02 20:14:03 +0200 |
commit | 22a0c6dd940b78cdac2f4a4b4b0e7cc0ac15021f (patch) | |
tree | 0e99fcc4cf336731fb52e3b028a0ecccbbbe1673 /src/liblzma/common/chunk_size.c | |
parent | Fix a bug in lzma_block_buffer_decode(), although this (diff) | |
download | xz-22a0c6dd940b78cdac2f4a4b4b0e7cc0ac15021f.tar.xz |
Modify LZMA_API macro so that it works on Windows with
other compilers than MinGW. This may hurt readability
of the API headers slightly, but I don't know any
better way to do this.
Diffstat (limited to 'src/liblzma/common/chunk_size.c')
-rw-r--r-- | src/liblzma/common/chunk_size.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/chunk_size.c b/src/liblzma/common/chunk_size.c index 33276b28..29a8e02b 100644 --- a/src/liblzma/common/chunk_size.c +++ b/src/liblzma/common/chunk_size.c @@ -36,7 +36,7 @@ Zero if the Uncompressed Sizes of Blocks don't matter */ -extern LZMA_API size_t +extern LZMA_API(size_t) lzma_chunk_size(const lzma_options_filter *filters) { while (filters->id != LZMA_VLI_UNKNOWN) { |