diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 11:42:08 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 11:42:08 +0100 |
commit | 2c477cf66147d369ae8ff17acdce743c6811ee6a (patch) | |
tree | 121a031caf30be9f6931e37e26cf2469c8c7acfa /main.c | |
parent | 986ca73074ef165880c75ee46a4eb6a1b328dc5b (diff) | |
download | dwm-2c477cf66147d369ae8ff17acdce743c6811ee6a.tar.gz |
replaced Arg union with const char *arg, seems cleaner to me, even if we need atoi() in some places
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c index d06a1b3..e6ba20c 100644 --- a/main.c +++ b/main.c @@ -236,7 +236,7 @@ sendevent(Window w, Atom a, long value) { } void -quit(Arg arg) { +quit(const char *arg) { readin = running = False; } |