[PATCH] Fix error message in memmove test to display correct src pointer

Sunil K Pandey skpgkp2@gmail.com
Thu Aug 26 15:48:19 GMT 2021


---
 string/test-memmove.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/string/test-memmove.c b/string/test-memmove.c
index 670094c9dc..02f2170bfd 100644
--- a/string/test-memmove.c
+++ b/string/test-memmove.c
@@ -298,7 +298,7 @@ do_test2 (size_t offset)
 		{
 		  error (0, 0,
 			 "Wrong result in function %s dst \"%p\" src \"%p\" offset \"%zd\"",
-			 impl->name, dst, large_buf, i);
+			 impl->name, dst, src, i);
 		  ret = 1;
 		  munmap ((void *) large_buf, size);
 		  return;
-- 
2.31.1



More information about the Libc-alpha mailing list