diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 18:07:47 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 18:07:47 +0200 |
commit | 129e1758a5e2cf851f042e139fdd808a9be9ce94 (patch) | |
tree | 2d94d2135446afe659e94f57103d2e2eab26389c /lib/tar/read_sparse_map.c | |
parent | 8ee3ee9c71418dbdb73d4350c17056024fb7ec41 (diff) |
Move sparse_map_t to libsquashfs headers, rename it to sqfs_sparse_map_t
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/tar/read_sparse_map.c')
-rw-r--r-- | lib/tar/read_sparse_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tar/read_sparse_map.c b/lib/tar/read_sparse_map.c index 0779b96..981a808 100644 --- a/lib/tar/read_sparse_map.c +++ b/lib/tar/read_sparse_map.c @@ -8,9 +8,9 @@ #include "internal.h" -sparse_map_t *read_sparse_map(const char *line) +sqfs_sparse_map_t *read_sparse_map(const char *line) { - sparse_map_t *last = NULL, *list = NULL, *ent = NULL; + sqfs_sparse_map_t *last = NULL, *list = NULL, *ent = NULL; do { ent = calloc(1, sizeof(*ent)); |