diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-29 14:13:37 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-29 14:13:37 +0200 |
commit | 825acfdfe4628523ff2a9ea86cd91c4c280f8e86 (patch) | |
tree | 20fd92dde67f812b342a58ead4817b9bb5aa5e17 /include/sqfs | |
parent | 9efbaf0bdbb6f1da7b89e2134783cfb68c139e3f (diff) |
Cleanup: rename "compress.h" to "compressor.h"
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs')
-rw-r--r-- | include/sqfs/compressor.h (renamed from include/sqfs/compress.h) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sqfs/compress.h b/include/sqfs/compressor.h index ca126f7..46bdf58 100644 --- a/include/sqfs/compress.h +++ b/include/sqfs/compressor.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ /* - * compress.h - This file is part of libsquashfs + * compressor.h - This file is part of libsquashfs * * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> * @@ -17,14 +17,14 @@ * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef SQFS_COMPRESS_H -#define SQFS_COMPRESS_H +#ifndef SQFS_COMPRESSOR_H +#define SQFS_COMPRESSOR_H #include "sqfs/predef.h" #include "sqfs/super.h" /** - * @file compress.h + * @file compressor.h * * @brief Contains declarations to everything related to data compression. */ @@ -380,4 +380,4 @@ int sqfs_compressor_id_from_name(const char *name, E_SQFS_COMPRESSOR *out); } #endif -#endif /* SQFS_COMPRESS_H */ +#endif /* SQFS_COMPRESSOR_H */ |