diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-03-05 15:17:45 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-03-05 15:17:45 +0100 |
commit | 5acb22a6a7168f8b961777482f39a125158def50 (patch) | |
tree | 24e7b46a2b69a938fc7906bc690c652a1aeab269 /include/common.h | |
parent | fbf41ac14978c93d054832af6331e6795fb86b0f (diff) |
Cleanup: Remove the E_ prefix from all libsquashfs enumerators
Avoid namespace polution. Make sure all exportet symbols are prefixed
with either sqfs_ or SQFS_.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/common.h b/include/common.h index cf2d1b5..bbdf81d 100644 --- a/include/common.h +++ b/include/common.h @@ -59,7 +59,7 @@ typedef struct { size_t num_jobs; int outmode; - E_SQFS_COMPRESSOR comp_id; + SQFS_COMPRESSOR comp_id; bool exportable; bool no_xattr; @@ -96,13 +96,13 @@ void sqfs_print_statistics(const sqfs_super_t *super, void compressor_print_available(void); -E_SQFS_COMPRESSOR compressor_get_default(void); +SQFS_COMPRESSOR compressor_get_default(void); int compressor_cfg_init_options(sqfs_compressor_config_t *cfg, - E_SQFS_COMPRESSOR id, + SQFS_COMPRESSOR id, size_t block_size, char *options); -void compressor_print_help(E_SQFS_COMPRESSOR id); +void compressor_print_help(SQFS_COMPRESSOR id); int inode_stat(const sqfs_tree_node_t *node, struct stat *sb); |