diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-06-09 06:51:31 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-06-09 06:51:31 +0200 |
commit | ec5ba7eb521626a85d2ab22e97eb1298b2ff6f55 (patch) | |
tree | e23054b1182a8d79172fed5360a6fc26380eb5c5 /include/sqfs/xattr_writer.h | |
parent | 322f6069de6c5e460a0c3b253d36b90ac30bef70 (diff) |
Cleanup: mark sqfs_xattr_writer_flush writer argument as const
It does not make any changes to the writer itself, so mark it as
const. This also requires some similar changes to the string table.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/xattr_writer.h')
-rw-r--r-- | include/sqfs/xattr_writer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sqfs/xattr_writer.h b/include/sqfs/xattr_writer.h index 21c5179..4b93118 100644 --- a/include/sqfs/xattr_writer.h +++ b/include/sqfs/xattr_writer.h @@ -129,7 +129,7 @@ SQFS_API int sqfs_xattr_writer_end(sqfs_xattr_writer_t *xwr, sqfs_u32 *out); * * @return Zero on success, a negative @ref SQFS_ERROR value on failure. */ -SQFS_API int sqfs_xattr_writer_flush(sqfs_xattr_writer_t *xwr, +SQFS_API int sqfs_xattr_writer_flush(const sqfs_xattr_writer_t *xwr, sqfs_file_t *file, sqfs_super_t *super, sqfs_compressor_t *cmp); |