diff options
author | Marvin Borner | 2021-01-08 22:49:54 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-08 22:49:54 +0100 |
commit | 45a9df836accd39cf2dbfbb2453496b0e4d93fa5 (patch) | |
tree | f2732f45d4b080644c1ab007be251c5b1eaf060e /apps/exec.c | |
parent | 3ad1fce1671c25c5db85977588fd1ceee436e1ba (diff) |
Major IDE/ATA driver rewrite
This adds non-hardcoded multi-disk support. I just need to remove
the boot/load.c loader and fix the max bootloader ext2 loading size.
After that's done I'll try running it on real hardware.
Diffstat (limited to 'apps/exec.c')
-rw-r--r-- | apps/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/exec.c b/apps/exec.c index 100ce26..8e3bf95 100644 --- a/apps/exec.c +++ b/apps/exec.c @@ -35,7 +35,7 @@ void on_submit(struct gui_event_keyboard *event, struct element *elem) strcat(final, inp); struct stat s = { 0 }; - if (stat(final, &s) && s.size) { + if (stat(final, &s) == 0 && s.size) { inp_elem->color_bg = COLOR_WHITE; exec(final, inp, arg, NULL); } else { |