summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-03 18:57:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-03 18:57:51 +0000
commitff9059586cd9cfdc0eac08c74d2d74700f83a689 (patch)
treede5c0387df300504e45835b22e07699768773987 /cpukit/libmisc/shell/shell.c
parent2008-09-03 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-ff9059586cd9cfdc0eac08c74d2d74700f83a689.tar.bz2
2008-09-03 Cindy Cicalese <cicalese@mitre.org>
* libmisc/shell/shell.c: FALSE accidentally changed to true in switch to bool type.
Diffstat (limited to 'cpukit/libmisc/shell/shell.c')
-rw-r--r--cpukit/libmisc/shell/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index bbcbfb9d3d..02dd2776d2 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -675,7 +675,7 @@ bool rtems_shell_main_loop(
int argc;
char *argv[RTEMS_SHELL_MAXIMUM_ARGUMENTS];
bool result = true;
- bool input_file = true;
+ bool input_file = false;
int line = 0;
FILE *stdinToClose = NULL;
FILE *stdoutToClose = NULL;