forgot to add parentheses

This commit is contained in:
Jyun-Yan You 2011-12-30 16:50:15 +08:00 committed by Brian Anderson
parent a59c4b1b47
commit d4884b6c6e

View File

@ -32,7 +32,7 @@ extern "C" void __morestack(void *args, void *fn_ptr, uintptr_t stack_ptr);
class context {
public:
#ifdef __FreeBSD__
registers_t regs __attribute__(aligned(16));
registers_t regs __attribute__((aligned(16)));
#else
registers_t regs;
#endif