projects
/
platform
/
upstream
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9926f6e
)
Fix error message in memmove test to display correct src pointer
author
Sunil K Pandey
<skpgkp2@gmail.com>
Thu, 26 Aug 2021 14:51:08 +0000
(07:51 -0700)
committer
Sunil K Pandey
<skpgkp2@gmail.com>
Thu, 26 Aug 2021 16:34:27 +0000
(09:34 -0700)
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
string/test-memmove.c
patch
|
blob
|
history
diff --git
a/string/test-memmove.c
b/string/test-memmove.c
index 670094c9dce4d07039e7a2b9f3ad3c0cd7bfb3a0..02f2170bfda992b408a568004f54004e984723f0 100644
(file)
--- 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;