]> git.ipfire.org Git - thirdparty/zstd.git/commit
fix LLU->ULL 3929/head
authorYann Collet <cyan@fb.com>
Mon, 4 Mar 2024 08:16:01 +0000 (00:16 -0800)
committerYann Collet <cyan@fb.com>
Mon, 4 Mar 2024 08:16:01 +0000 (00:16 -0800)
commit2abe8d63e06f0e7c9adacd50855a05023e51f1e0
treec00bf610ab0d5ef477cf77f8db77ec8ed2ca41c5
parentb293d2ebc3a5d29309390a70b3e7861b6f5133ec
fix LLU->ULL

LLU is a correct prefix according to C99 & C11 standards (but not C90).
However, older versions of Visual Studio do not work with it.
Replace by ULL, which doesn't have this issue.

Fixes https://github.com/facebook/zstd/issues/3647
tests/fuzzer.c