(WORD_ALIGN): Fix typo in last change.

From-SVN: r5708
This commit is contained in:
Richard Kenner 1993-10-10 08:58:10 -04:00
parent 9b69f523a7
commit 888184ea7e
1 changed files with 1 additions and 1 deletions

View File

@ -937,7 +937,7 @@ enum alloc_type {
};
#define WORD_ALIGN(x) (((x) + (sizeof (long) - 1)) & ~ (sizeof (long -1))))
#define WORD_ALIGN(x) (((x) + (sizeof (long) - 1)) & ~ (sizeof (long) - 1))
#define DWORD_ALIGN(x) (((x) + 7) & ~7)