diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-18 15:01:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-18 15:01:32 +0200 |
commit | 4f22fde635928735366ab656cd52ba3c6a791161 (patch) | |
tree | 6451f953f76525a3c4182c0a3d20867d20051e5d /thirdparty/zstd/common/threading.c | |
parent | 2dee231c8e229c93ba0979d8bee9559b571b9462 (diff) | |
parent | 20265879e2d34b1d6e38942173ff08c270284796 (diff) |
Merge pull request #28158 from akien-mga/zstd-1.4.0
zstd: Update to upstream 1.4.0, remove call to experimental API
Diffstat (limited to 'thirdparty/zstd/common/threading.c')
-rw-r--r-- | thirdparty/zstd/common/threading.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/zstd/common/threading.c b/thirdparty/zstd/common/threading.c index 8be8c8da94..f3d4fa8418 100644 --- a/thirdparty/zstd/common/threading.c +++ b/thirdparty/zstd/common/threading.c @@ -14,8 +14,8 @@ * This file will hold wrapper for systems, which do not support pthreads */ -/* create fake symbol to avoid empty trnaslation unit warning */ -int g_ZSTD_threading_useles_symbol; +/* create fake symbol to avoid empty translation unit warning */ +int g_ZSTD_threading_useless_symbol; #if defined(ZSTD_MULTITHREAD) && defined(_WIN32) |