summaryrefslogtreecommitdiff
path: root/thirdparty/zstd/common/xxhash.c
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-18 11:53:29 +0200
committerRémi Verschelde <rverschelde@gmail.com>2019-04-18 12:39:11 +0200
commit88cb9bd27f05f6622b4c8205d2811e4aad74d6e3 (patch)
tree12faaaa31169709cecf0daea0d63fa122592c09a /thirdparty/zstd/common/xxhash.c
parent6697fd9a05859914fc320b4b4321fd9fb6170f71 (diff)
zstd: Update to upstream 1.4.0
One step towards fixing #17374 as most experimental APIs we use are now part of the stable 1.4.0.
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.
*/