From: Frank Kühndel <frank.kuehn...@embedded-brains.de>

With some compiler warnings enabled, the implicit cast may trigger
a compiler warning. The explicit cast avoids this.
---
 cpukit/libmisc/shell/shell.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 77214d0be4..c5fc1f5c48 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -620,7 +620,9 @@ static int rtems_shell_line_editor(
         case 21:                        /* Control-U */
           if (col > 0)
           {
-            int clen = strlen (line);
+            /* strlen() returns size_t but fprintf("%*...") below requires
+             * int! */
+            int clen = (int) strlen (line);
             int bs;
 
             strcpy (line, line + col);
-- 
2.26.2

_______________________________________________
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Reply via email to