dwm-meillo

diff dwm.h @ 453:f30f937f9e52

small fix
author Anselm R. Garbe <arg@10kloc.org>
date Mon, 11 Sep 2006 08:58:58 +0200
parents 026aba558fdf
children ffb462fb7903
line diff
     1.1 --- a/dwm.h	Mon Sep 11 07:40:41 2006 +0200
     1.2 +++ b/dwm.h	Mon Sep 11 08:58:58 2006 +0200
     1.3 @@ -48,7 +48,7 @@
     1.4  	char name[256];
     1.5  	int proto;
     1.6  	int x, y, w, h;
     1.7 -	int tx, ty, tw, th; /* title */
     1.8 +	int tx, ty, tw, th; /* title window geometry */
     1.9  	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
    1.10  	int grav;
    1.11  	long flags; 
    1.12 @@ -121,7 +121,7 @@
    1.13  extern void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
    1.14  extern void eprint(const char *errstr, ...);	/* prints error string and exits with return code 1 */
    1.15  extern void *erealloc(void *ptr, unsigned int size);	/* reallocates memory, exits on error */
    1.16 -extern void spawn(Arg *arg)			/* forks a new subprocess accordingly to arg's cmd */
    1.17 +extern void spawn(Arg *arg);			/* forks a new subprocess accordingly to arg's cmd */
    1.18  
    1.19  /* view.c */
    1.20  extern void detach(Client *c);			/* detaches c from global client list */