| ... | ... | @@ -193,7 +193,7 @@ pub const CacheHash = struct { |
| 193 | 193 | const digest_str = iter.next() orelse return error.InvalidFormat; |
| 194 | 194 | const file_path = iter.rest(); |
| 195 | 195 | |
| 196 | | cache_hash_file.stat.inode = fmt.parseInt(fs.File.INode, mtime_nsec_str, 10) catch return error.InvalidFormat; |
| 196 | cache_hash_file.stat.inode = fmt.parseInt(fs.File.INode, inode, 10) catch return error.InvalidFormat; |
| 197 | 197 | cache_hash_file.stat.mtime = fmt.parseInt(i64, mtime_nsec_str, 10) catch return error.InvalidFormat; |
| 198 | 198 | base64_decoder.decode(&cache_hash_file.bin_digest, digest_str) catch return error.InvalidFormat; |
| 199 | 199 | |