aboutsummaryrefslogtreecommitdiff
path: root/apps/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/exec.c')
-rw-r--r--apps/exec.c2
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 {