ino_t varies across platforms; casting (int) here avoids

various pointless complaints.
This commit is contained in:
Tim Kientzle 2009-04-27 19:14:43 +00:00
parent 546cb91d54
commit 3da657c177
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=191586

View File

@ -125,8 +125,9 @@ archive_write_cpio_header(struct archive_write *a, struct archive_entry *entry)
* re-using the ones off the disk. That way, the 18-bit c_ino
* field only limits the number of files in the archive.
*/
if (archive_entry_ino(entry) > 0777777) {
archive_set_error(&a->archive, ERANGE, "large inode number truncated");
if ((int)archive_entry_ino(entry) > 0777777) {
archive_set_error(&a->archive, ERANGE,
"large inode number truncated");
ret = ARCHIVE_WARN;
}