diff options
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c index ba6f93e..192224b 100644 --- a/apps/init.c +++ b/apps/init.c @@ -10,8 +10,8 @@ int main(int argc, char **argv) printf("[%s loaded]\n", argv[0]); int wm = exec("/wm", "wm", argv[1], NULL); - /* int test = exec("/window", "test", NULL); */ + int test = exec("/window", "test", NULL); int mandelbrot = exec("/mandelbrot", "mandelbrot", NULL); - return wm + mandelbrot; + return wm + mandelbrot + test; } |