diff options
Diffstat (limited to 'tools/update-linux-headers.zig')
| -rw-r--r-- | tools/update-linux-headers.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/update-linux-headers.zig b/tools/update-linux-headers.zig index 48fdfbbb34..cfa16fcd38 100644 --- a/tools/update-linux-headers.zig +++ b/tools/update-linux-headers.zig @@ -106,8 +106,9 @@ const DestTarget = struct { return @truncate(u32, hasher.final()); } - pub fn eql(self: @This(), a: DestTarget, b: DestTarget) bool { + pub fn eql(self: @This(), a: DestTarget, b: DestTarget, b_index: usize) bool { _ = self; + _ = b_index; return a.arch.eql(b.arch); } }; |
