diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-02 22:02:43 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-02 22:11:19 +0100 |
commit | cb474e20d6ff923a8f338f26b93234411065ffc0 (patch) | |
tree | 4e3c16c18adcc9fd7b3b58f45064ec752f47485e /uniso.c | |
parent | 9f65b05ba2b0b291f9973228a5c4395508b95b16 (diff) | |
download | alpine-conf-cb474e20d6ff923a8f338f26b93234411065ffc0.zip |
fix mixed tabs & spaces and surplus empty lines at EOF
Diffstat (limited to 'uniso.c')
-rw-r--r-- | uniso.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -432,7 +432,7 @@ static int link_or_clone(const char *src, const char *dst, size_t bytes) } static int uniso_read_file(struct uniso_context *ctx, - struct uniso_reader *rd) + struct uniso_reader *rd) { struct uniso_dirent *dir = container_of(rd, struct uniso_dirent, reader); int fd, rc; @@ -555,9 +555,9 @@ static int queue_dirent(struct uniso_context *ctx, void *isode, const char *name strcpy(dir->name, name); return queue_reader(ctx, &dir->reader, - ide->extent.endianess * ISOFS_BLOCK_SIZE, - (ide->flags & ISOFS_DR_FLAG_DIRECTORY) ? - uniso_read_directory : uniso_read_file); + ide->extent.endianess * ISOFS_BLOCK_SIZE, + (ide->flags & ISOFS_DR_FLAG_DIRECTORY) ? + uniso_read_directory : uniso_read_file); } static int uniso_read_volume_descriptor(struct uniso_context *ctx, @@ -619,8 +619,8 @@ int uniso(int fd) ctx->loglevel = 1; queue_reader(ctx, &ctx->volume_desc_reader, - 16 * ISOFS_BLOCK_SIZE, - uniso_read_volume_descriptor); + 16 * ISOFS_BLOCK_SIZE, + uniso_read_volume_descriptor); while (list_hashed(&ctx->parser_head)) { rd = list_entry(ctx->parser_head.next, struct uniso_reader, parser_list); |