summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-01-04 21:13:15 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2025-01-04 21:13:15 +0100
commiteca26bdf4b0082a852638997534a85d30d4187f2 (patch)
tree37b79620cecb048c94e0c1f663a406427b4b6dde /bin
parentc1d880d84e93d5c60098b2e3de909a950b78023c (diff)
Consistently use id_num and id_code accessor names for stop IDs
Diffstat (limited to 'bin')
-rwxr-xr-xbin/efa-m3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/efa-m b/bin/efa-m
index 7777832..9002540 100755
--- a/bin/efa-m
+++ b/bin/efa-m
@@ -330,7 +330,8 @@ sub show_coord {
sub show_stopfinder {
my $max_len = max map { length( $_->full_name ) } $efa->results;
for my $stop ( $efa->results ) {
- printf( "%-${max_len}s %s\n", $stop->full_name, $stop->id );
+ printf( "%-${max_len}s %s %s\n",
+ $stop->full_name, $stop->id_num, $stop->id_code );
}
}