@@ -419,11 +419,11 @@ OFArray OF_GENERIC (OFString *) *components; OFString *fileName; of_file_attributes_t attributes; bool isDirectory = false; OFMutableZIPArchiveEntry *entry; - uintmax_t size; + unsigned long long size; OFStream *output; components = localFileName.pathComponents; fileName = [components componentsJoinedByString: @"/"]; @@ -456,11 +456,11 @@ [entry makeImmutable]; output = [_archive streamForWritingEntry: entry]; if (!isDirectory) { - uintmax_t written = 0; + unsigned long long written = 0; int8_t percent = -1, newPercent; OFFile *input = [OFFile fileWithPath: fileName mode: @"r"];