Skip to content

Commit

Permalink
Merge pull request #417 from mikelolasagasti/go-1.24-printf
Browse files Browse the repository at this point in the history
Fix: Ensure constant format strings in fmt and printf calls
  • Loading branch information
k8s-ci-robot authored Jan 21, 2025
2 parents fa118f5 + 3f71f22 commit e7125f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/internal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func main() {
func getEnvOrDie(name string) string {
val, ok := os.LookupEnv(name)
if !ok {
fmt.Fprintf(os.Stderr, name+" could not be found in environment")
fmt.Fprintln(os.Stderr, name, "could not be found in environment")
os.Exit(1)
}
return val
Expand Down

0 comments on commit e7125f7

Please sign in to comment.