rtems_shell_main_mmove problem

--0000000000006acec205efd38cd6
Content-Type: text/plain; charset="UTF-8"

Closes #4556
This commit is contained in:
zack leung
2022-12-14 20:12:25 -05:00
committed by Joel Sherrill
parent 30ca711d19
commit 4523c71340

View File

@@ -62,7 +62,7 @@ static int rtems_shell_main_mmove(
/*
* Now copy the memory.
*/
memcpy(dst, src, length);
memmove(dst, src, length);
return 0;
}