Properly fixed bug in mfatal.

This commit is contained in:
Kris Maglione 2007-03-22 17:11:23 -04:00
parent 29e01f3961
commit 2b39ee548b
1 changed files with 1 additions and 1 deletions

2
util.c
View File

@ -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);