All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] siggen: Fix typo
@ 2016-08-01  8:43 Ulrich Ölmann
  0 siblings, 0 replies; only message in thread
From: Ulrich Ölmann @ 2016-08-01  8:43 UTC (permalink / raw)
  To: bitbake-devel

Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
 lib/bb/siggen.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index db3daeffb56d..5d8a253a1feb 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -293,11 +293,11 @@ class SignatureGeneratorBasic(SignatureGenerator):
 
         computed_basehash = calc_basehash(data)
         if computed_basehash != self.basehash[k]:
-            bb.error("Basehash mismatch %s verses %s for %s" % (computed_basehash, self.basehash[k], k))
+            bb.error("Basehash mismatch %s versus %s for %s" % (computed_basehash, self.basehash[k], k))
         if runtime and k in self.taskhash:
             computed_taskhash = calc_taskhash(data)
             if computed_taskhash != self.taskhash[k]:
-                bb.error("Taskhash mismatch %s verses %s for %s" % (computed_taskhash, self.taskhash[k], k))
+                bb.error("Taskhash mismatch %s versus %s for %s" % (computed_taskhash, self.taskhash[k], k))
 
 
     def dump_sigs(self, dataCache, options):
-- 
2.8.1



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-01  9:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-01  8:43 [PATCH] siggen: Fix typo Ulrich Ölmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.