diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/highlevel.h | 2 | ||||
-rw-r--r-- | include/sqfs/compressor.h (renamed from include/sqfs/compress.h) | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/highlevel.h b/include/highlevel.h index 18cfd59..cb408b6 100644 --- a/include/highlevel.h +++ b/include/highlevel.h @@ -9,7 +9,7 @@ #include "config.h" -#include "sqfs/compress.h" +#include "sqfs/compressor.h" #include "sqfs/id_table.h" #include "sqfs/inode.h" #include "sqfs/table.h" 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 */ |