diff options
Diffstat (limited to 'libarchive/test/test_write_format_iso9660_empty.c')
| -rw-r--r-- | libarchive/test/test_write_format_iso9660_empty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libarchive/test/test_write_format_iso9660_empty.c b/libarchive/test/test_write_format_iso9660_empty.c index 55c6c3c7e567..3c1fa60bdc8c 100644 --- a/libarchive/test/test_write_format_iso9660_empty.c +++ b/libarchive/test/test_write_format_iso9660_empty.c @@ -131,7 +131,7 @@ DEFINE_TEST(test_write_format_iso9660_empty) /* Close out the archive. */ assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a)); - assertEqualIntA(a, ARCHIVE_OK, archive_write_free(a)); + assertEqualInt(ARCHIVE_OK, archive_write_free(a)); assert(used == 2048 * 181); /* Check System Area. */ @@ -198,7 +198,7 @@ DEFINE_TEST(test_write_format_iso9660_empty) */ assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae)); assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a)); - assertEqualIntA(a, ARCHIVE_OK, archive_read_free(a)); + assertEqualInt(ARCHIVE_OK, archive_read_free(a)); free(buff); } |
