small fix 438beeab
Anselm R. Garbe · 2006-09-11 08:58 2 file(s) · +3 −3
config.mk +1 −1
1 1
# dwm version
2 -
VERSION = 1.5
2 +
VERSION = 1.6
3 3
4 4
# Customize below to fit your system
5 5
dwm.h +2 −2
48 48
	char name[256];
49 49
	int proto;
50 50
	int x, y, w, h;
51 -
	int tx, ty, tw, th; /* title */
51 +
	int tx, ty, tw, th; /* title window geometry */
52 52
	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
53 53
	int grav;
54 54
	long flags; 
121 121
extern void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
122 122
extern void eprint(const char *errstr, ...);	/* prints error string and exits with return code 1 */
123 123
extern void *erealloc(void *ptr, unsigned int size);	/* reallocates memory, exits on error */
124 -
extern void spawn(Arg *arg)			/* forks a new subprocess accordingly to arg's cmd */
124 +
extern void spawn(Arg *arg);			/* forks a new subprocess accordingly to arg's cmd */
125 125
126 126
/* view.c */
127 127
extern void detach(Client *c);			/* detaches c from global client list */