Fix for warning on dash8 that caused a build failure because of -WError

This commit is contained in:
Bill Hoffman 2009-11-04 10:45:52 -05:00
parent d6630330d6
commit 7fba9849f9
1 changed files with 2 additions and 2 deletions

View File

@ -399,8 +399,8 @@ archive_write_zip_data(struct archive_write *a, const void *buff, size_t s)
struct zip *zip = a->format_data;
struct zip_file_header_link *l = zip->central_directory_end;
if (s > zip->remaining_data_bytes)
s = zip->remaining_data_bytes;
if (s > (size_t)zip->remaining_data_bytes)
s = (size_t)zip->remaining_data_bytes;
if (s == 0) return 0;