From c0608f199fc711aa82867f80059dfeebf38b4a25 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 6 Sep 2020 00:02:41 +0200 Subject: Fixed GPF on non-existent exec --- apps/init.c | 1 - apps/mandelbrot.c | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/init.c b/apps/init.c index 01eb47d..ba6f93e 100644 --- a/apps/init.c +++ b/apps/init.c @@ -9,7 +9,6 @@ int main(int argc, char **argv) printf("ARGC: %d\n", argc); printf("[%s loaded]\n", argv[0]); - // TODO: Fix GPF if file doesn't exist int wm = exec("/wm", "wm", argv[1], NULL); /* int test = exec("/window", "test", NULL); */ int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL); diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c index a2be040..d5b8ae0 100644 --- a/apps/mandelbrot.c +++ b/apps/mandelbrot.c @@ -48,6 +48,7 @@ void draw_mandelbrot(struct window *win, int resolution) } } gui_redraw(); + print("Rendered mandelbrot successfully\n"); yield(); } -- cgit v1.2.3