[PATCH] shell: Correct argument order of `mfill`
Jonathan Brandmeyer
jbrandmeyer at planetiq.com
Wed Mar 13 03:03:52 UTC 2019
Close #3723.
(cherry picked from commit 2e8a66d13f04015c0024a084578f720ceb15ea00)
---
cpukit/libmisc/shell/main_mfill.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cpukit/libmisc/shell/main_mfill.c b/cpukit/libmisc/shell/main_mfill.c
index ecbaec4878..c86e2b6a25 100644
--- a/cpukit/libmisc/shell/main_mfill.c
+++ b/cpukit/libmisc/shell/main_mfill.c
@@ -62,7 +62,7 @@ int rtems_shell_main_mfill(
/*
* Now fill the memory.
*/
- memset(addr, size, value);
+ memset(addr, value, size);
return 0;
}
--
2.11.0
More information about the devel
mailing list