]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix missing newline at EOF (#2566)
authorGraham Percival <gperciva@tarsnap.com>
Sun, 6 Apr 2025 20:38:06 +0000 (13:38 -0700)
committerGitHub <noreply@github.com>
Sun, 6 Apr 2025 20:38:06 +0000 (13:38 -0700)
libarchive/archive_match.c
libarchive/archive_read_support_format_7zip.c
libarchive/archive_read_support_format_lha.c
libarchive/archive_read_support_format_rar5.c
libarchive/archive_read_support_format_zip.c
libarchive/archive_time.c
libarchive/archive_time_private.h
libarchive/archive_write_set_format_7zip.c
libarchive/archive_write_set_format_zip.c
libarchive/test/test_write_format_zip_large.c

index 40a083ae5c006dfd7836d435bc352b9f008123ad..c08b06092a46434e2e0fe8866a7c48a2b066cd97 100644 (file)
@@ -1846,4 +1846,4 @@ owner_excluded(struct archive_match *a, struct archive_entry *entry)
                        return (r);
        }
        return (0);
-}
\ No newline at end of file
+}
index 653250a3100e794ed09951b25cee339b14fb3dec..a4f08e097dd3ec43476ffbd117beef32065650c1 100644 (file)
@@ -4300,4 +4300,4 @@ Bcj2_Decode(struct _7zip *zip, uint8_t *outBuf, size_t outSize)
        zip->bcj2_outPos += outPos;
 
        return ((ssize_t)outPos);
-}
\ No newline at end of file
+}
index 3eb4c577eae1da7e17c0a38fbb0cd40adff0e517..2a84ad9dd307251a9174527d551d35b9c3b2fcc5 100644 (file)
@@ -2876,4 +2876,4 @@ lzh_decode_huffman(struct huffman *hf, unsigned rbits)
                return (c);
        /* This bit pattern needs to be found out at a huffman tree. */
        return (lzh_decode_huffman_tree(hf, rbits, c));
-}
\ No newline at end of file
+}
index 6cf6fa3de5e775ff13a7f6a73dece08a9865dad5..48dde0c2e8140974bf021c35968096b056691a12 100644 (file)
@@ -4360,4 +4360,4 @@ int archive_read_support_format_rar5(struct archive *_a) {
        }
 
        return ret;
-}
\ No newline at end of file
+}
index bdfac23003db33821b069a55cb1209a7a5d13b6b..daf51933d687ac78cd5427a8ec8a6aeb3bb3e402 100644 (file)
@@ -4403,4 +4403,4 @@ archive_read_support_format_zip_seekable(struct archive *_a)
        return (ARCHIVE_OK);
 }
 
-/*# vim:set noet:*/
\ No newline at end of file
+/*# vim:set noet:*/
index cc5dc520de226851a5ec13a13e5d1ca6152098b9..f7a67b853108b0771543068094ea9dfe1e8b9813 100644 (file)
@@ -130,4 +130,4 @@ unix_to_ntfs(int64_t secs, uint32_t nsecs)
        uint64_t ntfs = secs + NTFS_EPOC_TIME;
        ntfs *= NTFS_TICKS;
        return ntfs + nsecs/100;
-}
\ No newline at end of file
+}
index 63298c5a907554058bbca010391a03df55d62ac8..f802607c3053cfe7b607205b068f27d150cc759b 100644 (file)
@@ -44,4 +44,4 @@ uint32_t unix_to_dos(int64_t secs);
 /* Windows FILETIME to NTFS time. */
 uint64_t FILETIME_to_ntfs(const FILETIME* filetime);
 #endif
-#endif /* ARCHIVE_TIME_PRIVATE_H_INCLUDED */
\ No newline at end of file
+#endif /* ARCHIVE_TIME_PRIVATE_H_INCLUDED */
index e4d4ffd51667f8ac8032a556d63936c255e2ef6b..8568b37e21b6f99342cd7735fbd10649521ba1b8 100644 (file)
@@ -2580,4 +2580,4 @@ compression_end(struct archive *a, struct la_zstream *lastrm)
                return (lastrm->end(a, lastrm));
        }
        return (ARCHIVE_OK);
-}
\ No newline at end of file
+}
index cbf97c5b49908a0d7417db20e3db438df918c2ef..3630b9f2b3a3ce91bd56afe8ce5198fd20b88290 100644 (file)
@@ -2501,4 +2501,4 @@ is_winzip_aes_encryption_supported(int encryption)
                return (0);
        archive_hmac_sha1_cleanup(&hctx);
        return (1);
-}
\ No newline at end of file
+}
index 9a84000bcb49191ce1d0fd3ea091545d76924efc..0be5d1d21025585f465c1cdab99d3cefe7c578d3 100644 (file)
@@ -456,4 +456,4 @@ DEFINE_TEST(test_write_format_zip_large)
        fileblocks_free(fileblocks);
        free(buff);
        free(nulldata);
-}
\ No newline at end of file
+}