pad out zmagic to 32+ bytes

This commit is contained in:
rsc 2007-03-26 15:03:34 +00:00
parent 40402738da
commit 96dada90ef

View file

@ -14,7 +14,7 @@ fmtzbinit(Fmt *f, ZBlock *b)
#define ROUNDUP(p, n) ((void*)(((uintptr)(p)+(n)-1)&~(uintptr)((n)-1)))
static char zmagic[] = "1234567890abcdefghijkl";
static char zmagic[] = "1234567890abcdefghijklmnopqrstuvxyz";
ZBlock *
alloczblock(u32int size, int zeroed, uint blocksize)