diff options
author | Anselm R Garbe | 2008-05-28 10:45:18 +0100 |
---|---|---|
committer | Anselm R Garbe | 2008-05-28 10:45:18 +0100 |
commit | e1002745fa4e2649d1f166f652c6c41ccfaaca9b (patch) | |
tree | 9865d06401f80f29319b1a0c72a3379e9a57da8a | |
parent | 940a4cc6c686fc38306acd5c8ae2d20caae16e5b (diff) |
core dump fix in cleanup
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -357,7 +357,7 @@ checkotherwm(void) { void cleanup(void) { close(STDIN_FILENO); - view(NULL); + view((uint[]){~0}); while(stack) unmanage(stack); if(dc.font.set) |