about summary refs log tree commit diff stats
path: root/cmd.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:15:11 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-11 18:15:11 +0200
commit586f66331d1105be03c42e6faeae1672b974a98a (patch)
treeb5a4f654969baf431ac0f10dad2354d70e7efc2b /cmd.c
parent33996500763b04119a6867dfa4040a4236c21a41 (diff)
downloaddwm-586f66331d1105be03c42e6faeae1672b974a98a.tar.gz
added bar event timer
Diffstat (limited to 'cmd.c')
-rw-r--r--cmd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd.c b/cmd.c
index 9ac4e72..4f1c84b 100644
--- a/cmd.c
+++ b/cmd.c
@@ -5,22 +5,22 @@
 
 #include "wm.h"
 #include <stdio.h>
+#include <string.h>
 
 void
-run(char *arg)
+run(void *aux)
 {
-	spawn(dpy, arg);
+	spawn(dpy, aux);
 }
 
 void
-quit(char *arg)
+quit(void *aux)
 {
-	fputs("quit\n", stderr);
 	running = False;
 }
 
 void
-kill(char *arg)
+kill(void *aux)
 {
 	Client *c = stack;
 
7b7d0d5bb6e728d9afbb68e238fcd3bda3a7'>^
f6fd7e1b ^

4254408a ^
3350c34a ^
f6fd7e1b ^


4254408a ^
3350c34a ^
f6fd7e1b ^



4254408a ^
3350c34a ^
f6fd7e1b ^


4254408a ^
3350c34a ^
f6fd7e1b ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89