diff options
author | Michihiro NAKAJIMA <ggcueroad@gmail.com> | 2012-10-07 13:29:29 +0900 |
---|---|---|
committer | Michihiro NAKAJIMA <ggcueroad@gmail.com> | 2012-10-07 13:29:29 +0900 |
commit | 3905ceaa51f1c9a5e2b486267064f6a0a4c2eb02 (patch) | |
tree | 345e77913c86c223c51763fecf54e4766d976452 /libarchive/test/test_write_format_iso9660.c | |
parent | 08e5985823058be70eb45bed9476a78725a3cccb (diff) | |
download | libarchive-3905ceaa51f1c9a5e2b486267064f6a0a4c2eb02.tar.gz |
Stop using deprecated functions. Much remains to be replaced.
s/archive_write_set_compression_/archive_write_add_filter_/
Diffstat (limited to 'libarchive/test/test_write_format_iso9660.c')
-rw-r--r-- | libarchive/test/test_write_format_iso9660.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/test/test_write_format_iso9660.c b/libarchive/test/test_write_format_iso9660.c index dd027afa..9c5a005f 100644 --- a/libarchive/test/test_write_format_iso9660.c +++ b/libarchive/test/test_write_format_iso9660.c @@ -50,7 +50,7 @@ DEFINE_TEST(test_write_format_iso9660) /* Create a new archive in memory. */ assert((a = archive_write_new()) != NULL); assertA(0 == archive_write_set_format_iso9660(a)); - assertA(0 == archive_write_set_compression_none(a)); + assertA(0 == archive_write_add_filter_none(a)); assertA(0 == archive_write_open_memory(a, buff, buffsize, &used)); /* |