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) |
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
@@ -236,7 +236,7 @@ sendevent(Window w, Atom a, long value) { } void -quit(Arg arg) { +quit(const char *arg) { readin = running = False; } |