summaryrefslogtreecommitdiffstats
path: root/src/bin/2021/day25.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/2021/day25.rs')
-rw-r--r--src/bin/2021/day25.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/2021/day25.rs b/src/bin/2021/day25.rs
index ed396c6..68d866e 100644
--- a/src/bin/2021/day25.rs
+++ b/src/bin/2021/day25.rs
@@ -60,7 +60,7 @@ impl Map {
pub fn parse(fh: File) -> Result<Map> {
Ok(Map {
- grid: parse::grid(parse::raw_lines(fh), |b| match b {
+ grid: parse::grid(parse::raw_lines(fh), |b, _, _| match b {
b'v' => Cell::Down,
b'>' => Cell::Right,
b'.' => Cell::None,