diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2007-06-14 19:56:58 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2007-06-14 19:56:58 -0500 |
commit | b721ff745d3e5b4fe6bb8db430553d54dba4bd17 (patch) | |
tree | 8f267466c28352bac8e2f59358411d0860bb0bcf /common/main.c | |
parent | 5b1313fb2758ffce8b624457f777d8cc6709608d (diff) | |
parent | 9912121f7ed804ea58fd62f3f230b5dcfc357d88 (diff) | |
download | u-boot-imx-b721ff745d3e5b4fe6bb8db430553d54dba4bd17.zip u-boot-imx-b721ff745d3e5b4fe6bb8db430553d54dba4bd17.tar.gz u-boot-imx-b721ff745d3e5b4fe6bb8db430553d54dba4bd17.tar.bz2 |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'common/main.c')
-rw-r--r-- | common/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/main.c b/common/main.c index 09ee64b..553ac35 100644 --- a/common/main.c +++ b/common/main.c @@ -1336,7 +1336,7 @@ int run_command (const char *cmd, int flag) /* Did the user stop this? */ if (had_ctrlc ()) - return 0; /* if stopped then not repeatable */ + return -1; /* if stopped then not repeatable */ } return rc ? rc : repeatable; |