]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Remove extraneous line break.
authorTim Kientzle <kientzle@gmail.com>
Sun, 24 May 2009 23:04:23 +0000 (19:04 -0400)
committerTim Kientzle <kientzle@gmail.com>
Sun, 24 May 2009 23:04:23 +0000 (19:04 -0400)
SVN-Revision: 1102

libarchive/archive_read_support_format_mtree.c

index 3496e0be0ea14752dcf197bb3361f294cc061c72..4850648cdbba9753799744c087a9937597762798 100644 (file)
@@ -588,8 +588,7 @@ parse_file(struct archive_read *a, struct archive_entry *entry,
 
        if (archive_entry_filetype(entry) == AE_IFREG ||
            archive_entry_filetype(entry) == AE_IFDIR) {
-               mtree->fd = open(path,
-                   O_RDONLY | O_BINARY);
+               mtree->fd = open(path, O_RDONLY | O_BINARY);
                if (mtree->fd == -1 &&
                    (errno != ENOENT ||
                     archive_strlen(&mtree->contents_name) > 0)) {