Skip to content

Commit

Permalink
fix printf
Browse files Browse the repository at this point in the history
Signed-off-by: grantseltzer <grantseltzer@gmail.com>
  • Loading branch information
grantseltzer committed May 6, 2022
1 parent 6fdfce3 commit 0c03537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selftest/object-iterator/main.go
Expand Up @@ -46,7 +46,7 @@ func main() {
}
for k, v := range expectedProgramNames {
if v == false {
fmt.Fprintln(os.Stderr, "did not iterate over expected program: %s", k)
fmt.Fprintf(os.Stderr, "did not iterate over expected program: %s", k)
os.Exit(-1)
}
}
Expand All @@ -69,7 +69,7 @@ func main() {
}
for k, v := range expectedMapNames {
if v == false {
fmt.Fprintln(os.Stderr, "did not iterate over expected map: %s", k)
fmt.Fprintf(os.Stderr, "did not iterate over expected map: %s", k)
os.Exit(-1)
}
}
Expand Down

0 comments on commit 0c03537

Please sign in to comment.