summaryrefslogtreecommitdiffstats
path: root/lib/xxhash.c
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2016-07-07 22:39:39 (GMT)
committerBen Wiederhake <BenWiederhake.GitHub@gmx.de>2016-07-07 22:46:02 (GMT)
commitd3e2d802660bc0585bd5d320e514601d4416cf19 (patch)
treec81282403aad646edf0bc77dc2f8811f7c72d844 /lib/xxhash.c
parentcec38d1b74e7b642b65e615517150f9587aedf7a (diff)
downloadlz4-d3e2d802660bc0585bd5d320e514601d4416cf19.zip
lz4-d3e2d802660bc0585bd5d320e514601d4416cf19.tar.gz
lz4-d3e2d802660bc0585bd5d320e514601d4416cf19.tar.bz2
Use https wherever possible
Diffstat (limited to 'lib/xxhash.c')
-rw-r--r--lib/xxhash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xxhash.c b/lib/xxhash.c
index 9238b15..156b484 100644
--- a/lib/xxhash.c
+++ b/lib/xxhash.c
@@ -46,7 +46,7 @@
* Method 2 : direct access. This method doesn't depend on compiler but violate C standard.
* It can generate buggy code on targets which do not support unaligned memory accesses.
* But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6)
- * See http://stackoverflow.com/a/32095106/646947 for details.
+ * See https://stackoverflow.com/a/32095106/646947 for details.
* Prefer these methods in priority order (0 > 1 > 2)
*/
#ifndef XXH_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */
@@ -167,7 +167,7 @@ static U64 XXH_read64(const void* ptr) { return ((const unalign*)ptr)->u64; }
#else
/* portable and safe solution. Generally efficient.
- * see : http://stackoverflow.com/a/32095106/646947
+ * see : https://stackoverflow.com/a/32095106/646947
*/
static U32 XXH_read32(const void* memPtr)