From 8bca4fcaa4938496706d4ca7f7d85d4190eb4ccf Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Mon, 30 Nov 2009 13:24:59 +0000 Subject: Added format string to fprintf(). --- cpukit/libmisc/shell/shell.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/libmisc/shell/shell.c') diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c index b87b79f01e..b17098098d 100644 --- a/cpukit/libmisc/shell/shell.c +++ b/cpukit/libmisc/shell/shell.c @@ -162,7 +162,7 @@ int rtems_shell_line_editor( { case RTEMS_SHELL_KEYS_END: if (output) - fprintf(out,line + col); + fprintf(out, "%s", line + col); col = (int) strlen (line); break; @@ -278,7 +278,7 @@ int rtems_shell_line_editor( case 5:/*Control-e*/ if (output) - fprintf(out,line + col); + fprintf(out, "%s", line + col); col = (int) strlen (line); break; @@ -364,7 +364,7 @@ int rtems_shell_line_editor( for (ch = end + 1; ch > col; ch--) line[ch] = line[ch - 1]; if (output) { - fprintf(out, line + col); + fprintf(out, "%s", line + col); for (bs = 0; bs < (end - col + 1); bs++) fputc('\b', out); } -- cgit v1.2.3