From d1d78df69b939f4e781cdf2b4be97c4a3bd5c468 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Mon, 17 Feb 2003 09:53:29 +0000 Subject: [PATCH] Define _ALIGNBYTES to be 15. This should have been done right away. --- sys/ia64/include/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ia64/include/param.h b/sys/ia64/include/param.h index 1813d339c67..cbe76f86d95 100644 --- a/sys/ia64/include/param.h +++ b/sys/ia64/include/param.h @@ -58,7 +58,7 @@ * */ #ifndef _ALIGNBYTES -#define _ALIGNBYTES 7 +#define _ALIGNBYTES 15 #endif #ifndef _ALIGN #define _ALIGN(p) (((u_long)(p) + _ALIGNBYTES) &~ _ALIGNBYTES)