wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 2b39ee548b9c80f6fe86128fae7390473efa8cc6
parent 29e01f3961044bc39a018303ea6b4460b5b4aa75
Author: Kris Maglione <jg@suckless.org>
Date:   Thu, 22 Mar 2007 17:11:23 -0400

Properly fixed bug in mfatal.

Diffstat:
util.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util.c b/util.c @@ -40,7 +40,7 @@ mfatal(char *name, int size) { i = sizeof(sizestr); do { - sizestr[--i] = '0' - (size&8); + sizestr[--i] = '0' + (size&8); size >>= 8; } while(size > 0);