aboutsummarylogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-02-22 07:59:13 +0100
committerAnselm R. Garbe2007-02-22 07:59:13 +0100
commite71681ca9ae70a20c250d2fb83ca26a4ad59c58f (patch)
tree6269d631e38cbeff1b6a3a3bd7da7a7cb0a70968 /util.c
parent6571b55554a7dd6060a5b8f7683c00707177f5f4 (diff)
downloadaur-e71681ca9ae70a20c250d2fb83ca26a4ad59c58f.tar.gz
several changes, made togglemax extern and separated it from zoom() - moved zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
Diffstat (limited to 'util.c')
-rw-r--r--util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util.c b/util.c
index 8b36a3f21d34..b786480724e0 100644
--- a/util.c
+++ b/util.c
@@ -30,12 +30,12 @@ eprint(const char *errstr, ...) {
}
void
-spawn(Arg *arg) {
+spawn(Arg arg) {
static char *shell = NULL;
if(!shell && !(shell = getenv("SHELL")))
shell = "/bin/sh";
- if(!arg->cmd)
+ if(!arg.cmd)
return;
/* The double-fork construct avoids zombie processes and keeps the code
* clean from stupid signal handlers. */
@@ -44,8 +44,8 @@ spawn(Arg *arg) {
if(dpy)
close(ConnectionNumber(dpy));
setsid();
- execl(shell, shell, "-c", arg->cmd, (char *)NULL);
- fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg->cmd);
+ execl(shell, shell, "-c", arg.cmd, (char *)NULL);
+ fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg.cmd);
perror(" failed");
}
exit(0);