From 81c3192988637b0691611194b91ea3e758334932 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Thu, 2 Feb 2023 17:26:26 -0700 Subject: [PATCH] Fix a grammatical error in a log message --- internal/pkg/configure/tftp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/configure/tftp.go b/internal/pkg/configure/tftp.go index 842d7fb4..9e71f67a 100644 --- a/internal/pkg/configure/tftp.go +++ b/internal/pkg/configure/tftp.go @@ -34,7 +34,7 @@ func TFTP() error { copyCheck[f] = true err = util.SafeCopyFile(path.Join(buildconfig.DATADIR(), f), path.Join(tftpdir, f)) if err != nil { - wwlog.Warn("ipxe binary could not be copied, not booting may not work: %s", err) + wwlog.Warn("ipxe binary could not be copied, booting may not work: %s", err) } }