diff options
author | adam <adam@pkgsrc.org> | 2014-04-07 18:40:05 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2014-04-07 18:40:05 +0000 |
commit | 941c9c82a56a4e34f0d739b135ab3cd41a73d385 (patch) | |
tree | 93ab1f851d1b3088e9af630faafd99a06f7ef461 /archivers | |
parent | a9bcc317d53fc36fe19833889b1b5a4d51b4f7af (diff) | |
download | pkgsrc-941c9c82a56a4e34f0d739b135ab3cd41a73d385.tar.gz |
Non-void function must return a value
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c b/archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c index 65988ca4fd4..b4da1cbf6e2 100644 --- a/archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c +++ b/archivers/libarchive/files/libarchive/archive_read_support_format_iso9660.c @@ -2677,7 +2677,7 @@ heap_add_entry(struct archive_read *a, struct heap_queue *heap, parent_key = heap->files[parent]->key; if (file_key >= parent_key) { heap->files[hole] = file; - return; + return (ARCHIVE_OK); } // Move parent into hole <==> move hole up tree. heap->files[hole] = heap->files[parent]; |