summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ka.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/ka.c')
-rw-r--r--mdk-stage1/ka.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/ka.c b/mdk-stage1/ka.c
index 670abe5af..c5f243828 100644
--- a/mdk-stage1/ka.c
+++ b/mdk-stage1/ka.c
@@ -53,8 +53,8 @@ static enum return_type ka_wait_for_stage2(int count)
int pida, wait_status;
if (!(pida = fork())) { /* Forking current process for running mkfs */
- //close(1);
- close(2);
+ close(1);
+ //close(2);
execv(mkfs_launch[0], mkfs_launch); /* Formating the ramdisk */
printf("KA: Can't execute %s\n<press Enter>\n", mkfs_launch[0]);
my_pause();