diff options
Diffstat (limited to 'usr.bin/mail/strings.c')
-rw-r--r-- | usr.bin/mail/strings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mail/strings.c b/usr.bin/mail/strings.c index 2f24f31c80e5..f27b959fd50e 100644 --- a/usr.bin/mail/strings.c +++ b/usr.bin/mail/strings.c @@ -64,8 +64,8 @@ salloc(size) int index; s = size; - s += (sizeof (char *) - 1); - s &= ~(sizeof (char *) - 1); + s += 3; + s &= ~03; index = 0; for (sp = &stringdope[0]; sp < &stringdope[NSPACE]; sp++) { if (sp->s_topFree == NOSTR && (STRINGSIZE << index) >= s) |