--- rxvt-unicode/src/salloc.C 2003/12/24 09:07:01 1.2 +++ rxvt-unicode/src/salloc.C 2004/02/13 12:16:21 1.5 @@ -2,7 +2,7 @@ #define SALLOC_BLOCK 65536 // size of basic block to allocate -rxvt_salloc::rxvt_salloc (int size) +rxvt_salloc::rxvt_salloc (unsigned int size) { this->size = size < sizeof (chain) ? sizeof (chain) : size; firstline = 0; @@ -40,7 +40,7 @@ firstfree = sizeof (chain); } - r = (void *)((char *)firstblock + firstfree); + r = (void *) ((char *)firstblock + firstfree); firstfree += size; } @@ -51,7 +51,6 @@ void rxvt_salloc::free (void *data) { -return;//D chain *line = (chain *)data; line->next = firstline; firstline = line;