From: Steinar H. Gunderson Date: Wed, 1 Nov 2023 21:47:23 +0000 (+0100) Subject: Correct cell names for duplicate detection. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=85051e000c56ad1843b41ea6d55bd05d6ddf3f40;p=skvidarsync Correct cell names for duplicate detection. --- diff --git a/bin/sync.pl b/bin/sync.pl index 3398803..0237fd6 100644 --- a/bin/sync.pl +++ b/bin/sync.pl @@ -116,7 +116,7 @@ sub matches_name { sub format_cell_names_for_seen { my $seen = shift; - my @cells = map { chr(ord('A') + $_->[2]) . $_->[1] } @$seen; + my @cells = map { chr(ord('A') + $_->[2]) . ($_->[1] + 1) } @$seen; return join(', ', @cells); }