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

Gedare Bloom gedare at rtems.org
Thu Mar 14 13:57:45 UTC 2019


Module:    rtems
Branch:    4.11
Commit:    33c82ddba1856df8b06a9363b671ee6f7856ece3
Changeset: http://git.rtems.org/rtems/commit/?id=33c82ddba1856df8b06a9363b671ee6f7856ece3

Author:    Jonathan Brandmeyer <jbrandmeyer at planetiq.com>
Date:      Tue Mar 12 21:04:27 2019 -0600

shell: Correct argument order of `mfill`

Close #3722.

(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 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