aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-11 11:28:28 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-11 11:28:28 +0200
commitb597fa46370af6594c0980f6c2ddefbe943ee933 (patch)
tree5000414fe9f80a09e99d199f848e3ff40107f045 /main.c
parentd2d394eccf2d23eb264a321fe187bb2084beb4b9 (diff)
downloaddwm-b597fa46370af6594c0980f6c2ddefbe943ee933.tar.zst
fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 5e7b4a6..9d583b2 100644
--- a/main.c
+++ b/main.c
@@ -214,7 +214,7 @@ quit(Arg *arg)
/*
* There's no way to check accesses to destroyed windows, thus those cases are
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
- * default error handler, which calls exit().
+ * default error handler, which may call exit.
*/
int
xerror(Display *dpy, XErrorEvent *ee)
@@ -229,7 +229,7 @@ xerror(Display *dpy, XErrorEvent *ee)
return 0;
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
ee->request_code, ee->error_code);
- return xerrorxlib(dpy, ee); /* may call exit() */
+ return xerrorxlib(dpy, ee); /* may call exit */
}
int