summaryrefslogtreecommitdiff
path: root/thirdparty/zstd/common/xxhash.c
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-04-18 15:01:32 +0200
committerGitHub <noreply@github.com>2019-04-18 15:01:32 +0200
commit4f22fde635928735366ab656cd52ba3c6a791161 (patch)
tree6451f953f76525a3c4182c0a3d20867d20051e5d /thirdparty/zstd/common/xxhash.c
parent2dee231c8e229c93ba0979d8bee9559b571b9462 (diff)
parent20265879e2d34b1d6e38942173ff08c270284796 (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/xxhash.c')
-rw-r--r--thirdparty/zstd/common/xxhash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/zstd/common/xxhash.c b/thirdparty/zstd/common/xxhash.c
index 532b816192..30599aaae4 100644
--- a/thirdparty/zstd/common/xxhash.c
+++ b/thirdparty/zstd/common/xxhash.c
@@ -66,10 +66,10 @@
/* #define XXH_ACCEPT_NULL_INPUT_POINTER 1 */
/*!XXH_FORCE_NATIVE_FORMAT :
- * By default, xxHash library provides endian-independant Hash values, based on little-endian convention.
+ * By default, xxHash library provides endian-independent Hash values, based on little-endian convention.
* Results are therefore identical for little-endian and big-endian CPU.
* This comes at a performance cost for big-endian CPU, since some swapping is required to emulate little-endian format.
- * Should endian-independance be of no importance for your application, you may set the #define below to 1,
+ * Should endian-independence be of no importance for your application, you may set the #define below to 1,
* to improve speed for Big-endian CPU.
* This option has no impact on Little_Endian CPU.
*/