aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/libunarchive/get_header_tar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/get_header_tar.c b/archival/libunarchive/get_header_tar.c
index 1ba37d6d7..38fb04070 100644
--- a/archival/libunarchive/get_header_tar.c
+++ b/archival/libunarchive/get_header_tar.c
@@ -129,8 +129,8 @@ file_header_t *get_header_tar(FILE * tar_stream)
129 tar_entry->link_name = 129 tar_entry->link_name =
130 strlen(tar.formated.linkname) ? xstrdup(tar.formated.linkname) : NULL; 130 strlen(tar.formated.linkname) ? xstrdup(tar.formated.linkname) : NULL;
131 tar_entry->device = 131 tar_entry->device =
132 (strtol(tar.formated.devmajor, NULL, 8) << 8) + 132 (dev_t) ((strtol(tar.formated.devmajor, NULL, 8) << 8) +
133 strtol(tar.formated.devminor, NULL, 8); 133 strtol(tar.formated.devminor, NULL, 8));
134 134
135 return (tar_entry); 135 return (tar_entry);
136} 136}