Fix a grammatical error in a log message

This commit is contained in:
Jonathon Anderson
2023-02-02 17:26:26 -07:00
committed by GitHub
parent 32ab50f299
commit 81c3192988

View File

@@ -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)
}
}