From: Tim Kientzle Date: Sun, 24 May 2009 23:04:23 +0000 (-0400) Subject: Remove extraneous line break. X-Git-Tag: v2.8.0~638 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65abade3da1c554bead012e75a7a415b25fc1d8f;p=thirdparty%2Flibarchive.git Remove extraneous line break. SVN-Revision: 1102 --- diff --git a/libarchive/archive_read_support_format_mtree.c b/libarchive/archive_read_support_format_mtree.c index 3496e0be0..4850648cd 100644 --- a/libarchive/archive_read_support_format_mtree.c +++ b/libarchive/archive_read_support_format_mtree.c @@ -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)) {