forked from Imagelibrary/rtems
Added format string to fprintf().
This commit is contained in:
@@ -34,6 +34,10 @@
|
||||
* libcsupport/src/termios.c: Obtain output semaphore before drain
|
||||
output during close to prevent an infinite output drain loop.
|
||||
|
||||
2009-11-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* libmisc/shell/shell.c: Added format string to fprintf().
|
||||
|
||||
2009-11-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* rtems/include/rtems/rtems/timer.h: Added timer server control block
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user