diff mbox series

[U-Boot,1/1] efi_selftest: efi_st_memcmp return difference of bytes

Message ID 20171006183913.22358-1-xypron.glpk@gmx.de
State Accepted
Commit c155dfeb1e17181998e66830b677baa8983daf6b
Headers show
Series [U-Boot,1/1] efi_selftest: efi_st_memcmp return difference of bytes | expand

Commit Message

Heinrich Schuchardt Oct. 6, 2017, 6:39 p.m. UTC
If the memory regions are different efi_st_memcmp currently
returns the difference of the addresses. Insted the
difference of the first differing byte pair should be
returned.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 lib/efi_selftest/efi_selftest_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/efi_selftest/efi_selftest_util.c b/lib/efi_selftest/efi_selftest_util.c
index c9c295e2fb..5cffe383d8 100644
--- a/lib/efi_selftest/efi_selftest_util.c
+++ b/lib/efi_selftest/efi_selftest_util.c
@@ -17,7 +17,7 @@  int efi_st_memcmp(const void *buf1, const void *buf2, size_t length)
 
 	for (; length; --length) {
 		if (*pos1 != *pos2)
-			return pos1 - pos2;
+			return *pos1 - *pos2;
 		++pos1;
 		++pos2;
 	}