mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
shell: Correct argument order of mfill
Close #3722.
(cherry picked from commit 2e8a66d13f)
This commit is contained in:
committed by
Gedare Bloom
parent
dc6bd8bb66
commit
33c82ddba1
@@ -60,7 +60,7 @@ static int rtems_shell_main_mfill(
|
||||
/*
|
||||
* Now fill the memory.
|
||||
*/
|
||||
memset(addr, size, value);
|
||||
memset(addr, value, size);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user