Commit 5afb202093f6a001797db92cf695b93a70ea9ab4

Authored by Detlev Zundel
1 parent 9045f33c02

Fix 'run' not to continue after interrupted command

Signed-off-by: Detlev Zundel <dzu@denx.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1336,7 +1336,7 @@
1336 1336  
1337 1337 /* Did the user stop this? */
1338 1338 if (had_ctrlc ())
1339   - return 0; /* if stopped then not repeatable */
  1339 + return -1; /* if stopped then not repeatable */
1340 1340 }
1341 1341  
1342 1342 return rc ? rc : repeatable;