summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlexander Mohr <git@mohr.io>2022-06-11 22:41:55 (GMT)
committerAlexander Mohr <git@mohr.io>2022-06-11 22:41:55 (GMT)
commitaf447b22c80d25c8d88cc3147c120e027b18d0ae (patch)
treea1de28196d0e34c1f16ad5102e7e76d34851a990 /lib
parent9a42a9db94ff4c71de5590cae8d0f90339e6733b (diff)
downloadlz4-af447b22c80d25c8d88cc3147c120e027b18d0ae.zip
lz4-af447b22c80d25c8d88cc3147c120e027b18d0ae.tar.gz
lz4-af447b22c80d25c8d88cc3147c120e027b18d0ae.tar.bz2
meson: fix meson build
add static dependency to examples
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.c b/lib/lz4frame.c
index 788f19f..251521e 100644
--- a/lib/lz4frame.c
+++ b/lib/lz4frame.c
@@ -1047,7 +1047,7 @@ size_t LZ4F_compressUpdate(LZ4F_cctx* cctxPtr,
* or an error code if it fails (which can be tested using LZ4F_isError())
* After an error, the state is left in a UB state, and must be re-initialized.
*/
-LZ4FLIB_STATIC_API size_t LZ4F_uncompressedUpdate(LZ4F_cctx* cctxPtr,
+size_t LZ4F_uncompressedUpdate(LZ4F_cctx* cctxPtr,
void* dstBuffer, size_t dstCapacity,
const void* srcBuffer, size_t srcSize,
const LZ4F_compressOptions_t* compressOptionsPtr) {