diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-04 15:19:13 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-04 15:19:13 +0100 |
commit | a215d3358f35e3331b4ce6c7f5a03b4544e04d43 (patch) | |
tree | c6e6b6aa96c6a4a95165433da6a22075934f62b6 /cmd | |
parent | 39bfdffd0cc5f278720e3198c7cac257d9831e4e (diff) | |
download | fsverify-a215d3358f35e3331b4ce6c7f5a03b4544e04d43.tar.gz fsverify-a215d3358f35e3331b4ce6c7f5a03b4544e04d43.tar.bz2 |
fix verification print
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/verify.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/verify.go b/cmd/verify.go index 260aaa1..17014db 100644 --- a/cmd/verify.go +++ b/cmd/verify.go @@ -142,7 +142,7 @@ func ValidateCommand(_ *cobra.Command, args []string) error { fmt.Println("fail") return err } - fmt.Printf("Block '%s' ranging from %d to %d matches!\n", getnode.PrevNodeSum, getnode.BlockStart, getnode.BlockEnd) + fmt.Printf("Block '%s' ranging from %d to %d matches!\n", node.PrevNodeSum, node.BlockStart, node.BlockEnd) } |