mirror of
https://git.tukaani.org/xz.git
synced 2026-02-25 21:38:06 +00:00
liblzma: Fix a copy-paste error in commented-out code
Fixes: https://github.com/dotnet/runtime/pull/124003#discussion_r2841960994 Fixes: 96b663f67c0e ("liblzma: Refactor CRC comments.")
This commit is contained in:
parent
4e76651dba
commit
5553509f1a
@ -182,7 +182,7 @@ lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc)
|
|||||||
// See crc32_dispatch(). This would be the alternative which uses
|
// See crc32_dispatch(). This would be the alternative which uses
|
||||||
// locking and doesn't use crc32_dispatch(). Note that on Windows
|
// locking and doesn't use crc32_dispatch(). Note that on Windows
|
||||||
// this method needs Vista threads.
|
// this method needs Vista threads.
|
||||||
mythread_once(crc64_set_func);
|
mythread_once(crc32_set_func);
|
||||||
#endif
|
#endif
|
||||||
*/
|
*/
|
||||||
return crc32_func(buf, size, crc);
|
return crc32_func(buf, size, crc);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user