diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:15:40 +0200 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 18:15:40 +0200 | 
| commit | 40232f4bd4d7e8e001f7d1e8f120606f59b2c147 (patch) | |
| tree | 5d763f4f22a487fd2e669efe0970615096f1f5fd /lib/sqfs/write_table.c | |
| parent | f6904a98bffe0bce5fc6aac408c141a25c0e05ab (diff) | |
Cleanup: replace fixed with data types with typedefs
This is a fully automated search and replace, i.e. I ran this:
git grep -l uint8_t | xargs sed -i 's/uint8_t/sqfs_u8/g'
git grep -l uint16_t | xargs sed -i 's/uint16_t/sqfs_u16/g'
git grep -l uint32_t | xargs sed -i 's/uint32_t/sqfs_u32/g'
git grep -l uint64_t | xargs sed -i 's/uint64_t/sqfs_u64/g'
git grep -l int8_t | xargs sed -i 's/int8_t/sqfs_s8/g'
git grep -l int16_t | xargs sed -i 's/int16_t/sqfs_s16/g'
git grep -l int32_t | xargs sed -i 's/int32_t/sqfs_s32/g'
git grep -l int64_t | xargs sed -i 's/int64_t/sqfs_s64/g'
and than added the appropriate definitions to sqfs/predef.h
The whole point being better compatibillity with platforms that may
not have an stdint.h with the propper definitions.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/write_table.c')
| -rw-r--r-- | lib/sqfs/write_table.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqfs/write_table.c b/lib/sqfs/write_table.c index 5f11769..c50cf06 100644 --- a/lib/sqfs/write_table.c +++ b/lib/sqfs/write_table.c @@ -19,10 +19,10 @@  #include <stdlib.h>  int sqfs_write_table(sqfs_file_t *file, sqfs_compressor_t *cmp, -		     const void *data, size_t table_size, uint64_t *start) +		     const void *data, size_t table_size, sqfs_u64 *start)  {  	size_t block_count, list_size, diff, blkidx = 0; -	uint64_t off, *locations; +	sqfs_u64 off, *locations;  	sqfs_meta_writer_t *m;  	int ret; @@ -30,7 +30,7 @@ int sqfs_write_table(sqfs_file_t *file, sqfs_compressor_t *cmp,  	if ((table_size % SQFS_META_BLOCK_SIZE) != 0)  		++block_count; -	locations = alloc_array(sizeof(uint64_t), block_count); +	locations = alloc_array(sizeof(sqfs_u64), block_count);  	if (locations == NULL)  		return SQFS_ERROR_ALLOC; @@ -64,7 +64,7 @@ int sqfs_write_table(sqfs_file_t *file, sqfs_compressor_t *cmp,  	/* write location list */  	*start = file->get_size(file); -	list_size = sizeof(uint64_t) * block_count; +	list_size = sizeof(sqfs_u64) * block_count;  	off = file->get_size(file);  | 
