summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-11-30 13:24:59 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-11-30 13:24:59 +0000
commit8bca4fcaa4938496706d4ca7f7d85d4190eb4ccf (patch)
tree254fee72ed6ee11bc357553cb3993e1f5b4b200c /cpukit/libmisc/shell/shell.c
parentObtain output semaphore before drain output during close to prevent an infini... (diff)
downloadrtems-8bca4fcaa4938496706d4ca7f7d85d4190eb4ccf.tar.bz2
Added format string to fprintf().
Diffstat (limited to 'cpukit/libmisc/shell/shell.c')
-rw-r--r--cpukit/libmisc/shell/shell.c6
1 files changed, 3 insertions, 3 deletions
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);
}