[rtems commit] shell: Correct argument order of `mfill`

Sebastian Huber sebh at rtems.org
Fri Mar 8 06:40:01 UTC 2019


Module:    rtems
Branch:    master
Commit:    2e8a66d13f04015c0024a084578f720ceb15ea00
Changeset: http://git.rtems.org/rtems/commit/?id=2e8a66d13f04015c0024a084578f720ceb15ea00

Author:    Jonathan Brandmeyer <jbrandmeyer at planetiq.com>
Date:      Fri Mar  1 11:21:34 2019 -0700

shell: Correct argument order of `mfill`

Close #3720.

---

 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 d8e2fcf..47a55d3 100644
--- a/cpukit/libmisc/shell/main_mfill.c
+++ b/cpukit/libmisc/shell/main_mfill.c
@@ -60,7 +60,7 @@ static int rtems_shell_main_mfill(
   /*
    *  Now fill the memory.
    */
-  memset(addr, size, value);
+  memset(addr, value, size);
 
   return 0;
 }




More information about the vc mailing list