diff --git a/src/client.c b/src/client.c index bcf6320..b538f8c 100644 --- a/src/client.c +++ b/src/client.c @@ -402,6 +402,7 @@ client_map(Client *c) /** Manage a client with a window and his attributes * \param w Cient's futur Window * \param wa XWindowAttributes pointer, Window w attributes + * \param ar Do arrange() or not (Bool) * \return The managed client */ Client* diff --git a/src/wmfs.c b/src/wmfs.c index 0ef122b..ec59a72 100644 --- a/src/wmfs.c +++ b/src/wmfs.c @@ -245,7 +245,7 @@ uicb_reload(uicb_t cmd) quit(); XCloseDisplay(dpy); - for(; argv_global[0] && argv_global[0] == ' '; argv_global++); + for(; argv_global[0] && argv_global[0] == ' '; ++argv_global); execlp(argv_global, argv_global, NULL); @@ -451,7 +451,7 @@ main(int argc, char **argv) init(); scan(); mainloop(); - raise(SIGTERM); + quit(); XCloseDisplay(dpy);