diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-29 22:45:11 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-29 22:45:11 +0200 |
| commit | 43a46a1a3a50e08d5a774c73a2528b877ac29451 (patch) | |
| tree | 8ef856569288a7e8e5fea594c2ae4a277d8c5526 /main.go | |
| parent | 7a116ec86693d07725be6b0233f0c0bab6e65d9d (diff) | |
fix list by adding forgotten format arg
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ func main() { if *flags.List { for _, s := range st.Sources { for _, t := range s.Targets { - _, _ = spool.Print(t.ShortestId() + paths.Ifs) + _, _ = spool.Print("%v\n", t.ShortestId()+paths.Ifs) } } os.Exit(0) |
