Commit 888184ea by Richard Kenner

(WORD_ALIGN): Fix typo in last change.

From-SVN: r5708
parent 9b69f523
...@@ -937,7 +937,7 @@ enum alloc_type { ...@@ -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) #define DWORD_ALIGN(x) (((x) + 7) & ~7)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment