# HG changeset patch # User Anselm R. Garbe # Date 1157957938 -7200 # Node ID f30f937f9e52e68f0064a6811dd14174622ea204 # Parent 026aba558fdf4fda2005e76a3679fdf92859aeb5 small fix diff -r 026aba558fdf -r f30f937f9e52 config.mk --- a/config.mk Mon Sep 11 07:40:41 2006 +0200 +++ b/config.mk Mon Sep 11 08:58:58 2006 +0200 @@ -1,5 +1,5 @@ # dwm version -VERSION = 1.5 +VERSION = 1.6 # Customize below to fit your system diff -r 026aba558fdf -r f30f937f9e52 dwm.h --- a/dwm.h Mon Sep 11 07:40:41 2006 +0200 +++ b/dwm.h Mon Sep 11 08:58:58 2006 +0200 @@ -48,7 +48,7 @@ char name[256]; int proto; int x, y, w, h; - int tx, ty, tw, th; /* title */ + int tx, ty, tw, th; /* title window geometry */ int basew, baseh, incw, inch, maxw, maxh, minw, minh; int grav; long flags; @@ -121,7 +121,7 @@ extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ extern void eprint(const char *errstr, ...); /* prints error string and exits with return code 1 */ extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */ -extern void spawn(Arg *arg) /* forks a new subprocess accordingly to arg's cmd */ +extern void spawn(Arg *arg); /* forks a new subprocess accordingly to arg's cmd */ /* view.c */ extern void detach(Client *c); /* detaches c from global client list */