From 481f2fba6f315912db775dfcf9e2bee6a1d4a5ab Mon Sep 17 00:00:00 2001 From: William Douglas Date: Mon, 1 May 2023 17:43:44 -0700 Subject: [PATCH] Fix log message Correct message to indicate SSE file is missing. Signed-off-by: William Douglas --- swupd/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swupd/manifest.go b/swupd/manifest.go index f55a8a5..2d0f417 100644 --- a/swupd/manifest.go +++ b/swupd/manifest.go @@ -371,7 +371,7 @@ func (m *Manifest) setupModifiers() error { } } if !ssebin { - return fmt.Errorf("%s missing non-SSE version of binary", k) + return fmt.Errorf("%s missing SSE version of binary", k) } for _, f := range v { f.setFullModifier(m)