From f3ad59aebd075c9685afd684cd538fa226018236 Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 4 Jun 2003 02:15:13 +0000 Subject: Fix ALIGNED_POINTER(). sizeof((u_int32_t)) is not legal C. --- sys/amd64/include/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/include/param.h b/sys/amd64/include/param.h index 9f73c2c..c1dccb9 100644 --- a/sys/amd64/include/param.h +++ b/sys/amd64/include/param.h @@ -87,7 +87,7 @@ #define ALIGNBYTES _ALIGNBYTES #define ALIGN(p) _ALIGN(p) -#define ALIGNED_POINTER(p,t) _ALIGNED_POINTER((p),(t)) +#define ALIGNED_POINTER(p,t) _ALIGNED_POINTER(p,t) /* Size of the level 1 page table units */ -- cgit v1.1