From de36e6ec2fe85d353a9c18110316530f4054e207 Mon Sep 17 00:00:00 2001 From: oga Date: Wed, 20 Feb 2008 13:00:18 +0000 Subject: add exec_wm to calmwm.h, it was missing (bad ian@!) Also, exec_wm() currenty err()s out if something failed with the exec, killing the currently running wm. This is bad. Replace the err() with warn() instead. from Gleydson Soares, thanks! --- calmwm.h | 1 + util.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/calmwm.h b/calmwm.h index 118ad32..631901d 100644 --- a/calmwm.h +++ b/calmwm.h @@ -396,6 +396,7 @@ int dirent_exists(char *); int dirent_isdir(char *); int dirent_islink(char *); int u_spawn(char *); +void exec_wm(char *); void grab_sweep(struct client_ctx *); void grab_drag(struct client_ctx *); diff --git a/util.c b/util.c index c7f5ea8..792129d 100644 --- a/util.c +++ b/util.c @@ -62,7 +62,7 @@ exec_wm(char *argstr) *ap = NULL; setsid(); execvp(args[0], args); - err(1, args[0]); + warn(args[0]); } int dirent_isdir(char *filename) { -- cgit 1.4.1