Fix 'run' not to continue after interrupted command

Signed-off-by: Detlev Zundel <dzu@denx.de>
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 @@
 
 		/* 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;