Skip to content

Commit

Permalink
liblzma: Rename crc_macros.h to crc_common.h.
Browse files Browse the repository at this point in the history
  • Loading branch information
hansjans162 authored and JiaT75 committed Oct 13, 2023
1 parent 37947d4 commit 233885a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ add_library(liblzma
src/liblzma/api/lzma/vli.h
src/liblzma/check/check.c
src/liblzma/check/check.h
src/liblzma/check/crc_macros.h
src/liblzma/check/crc_common.h
src/liblzma/common/block_util.c
src/liblzma/common/common.c
src/liblzma/common/common.h
Expand Down
2 changes: 1 addition & 1 deletion src/liblzma/check/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ EXTRA_DIST += \
liblzma_la_SOURCES += \
check/check.c \
check/check.h \
check/crc_macros.h
check/crc_common.h

if COND_CHECK_CRC32
if COND_SMALL
Expand Down
2 changes: 1 addition & 1 deletion src/liblzma/check/crc32_fast.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
///////////////////////////////////////////////////////////////////////////////

#include "check.h"
#include "crc_macros.h"
#include "crc_common.h"


// If you make any changes, do some benchmarking! Seemingly unrelated
Expand Down
2 changes: 1 addition & 1 deletion src/liblzma/check/crc64_fast.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

#ifdef CRC_GENERIC

#include "crc_macros.h"
#include "crc_common.h"


#ifdef WORDS_BIGENDIAN
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
//
/// \file crc_macros.h
/// \file crc_common.h
/// \brief Some endian-dependent macros for CRC32 and CRC64
//
// Author: Lasse Collin
Expand Down

0 comments on commit 233885a

Please sign in to comment.