| commit | 73e9882a907654dbecfb55ea0f30030e0fedbb1e | [log] [tgz] |
|---|---|---|
| author | Tim Windelschmidt <tim@monogon.tech> | Thu Apr 18 23:13:49 2024 +0200 |
| committer | Tim Windelschmidt <tim@monogon.tech> | Wed Apr 24 22:29:11 2024 +0000 |
| tree | b69ef493fcdf76614ed82d64f1a9ec8c79bb0375 | |
| parent | 07541ae311e9477cf1e5a20af82a81ee77840afe [diff] [blame] |
treewide: cleanup error string formatting Change-Id: I9012ba58dded916984468219b214200144a439b9 Reviewed-on: https://review.monogon.dev/c/monogon/+/3023 Reviewed-by: Serge Bazanski <serge@monogon.tech> Vouch-Run-CI: Tim Windelschmidt <tim@monogon.tech> Tested-by: Jenkins CI
diff --git a/metropolis/node/build/mkverity/mkverity.go b/metropolis/node/build/mkverity/mkverity.go index 7300f49..f44b601 100644 --- a/metropolis/node/build/mkverity/mkverity.go +++ b/metropolis/node/build/mkverity/mkverity.go
@@ -58,7 +58,7 @@ return nil, fmt.Errorf("the data image must be a regular file") } if ds.Size()%int64(bs) != 0 { - return nil, fmt.Errorf("the data image must end on a %d-byte block boundary.", bs) + return nil, fmt.Errorf("the data image must end on a %d-byte block boundary", bs) } // Create an empty hash image file.