summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-06-04 02:15:13 +0000
committerpeter <peter@FreeBSD.org>2003-06-04 02:15:13 +0000
commitf3ad59aebd075c9685afd684cd538fa226018236 (patch)
tree8b2989775b9101aa1f9dada2752c722d03f2a656 /sys/amd64
parent781a492a3e48ff7738edf2fb675d5d419a9d7ad1 (diff)
downloadFreeBSD-src-f3ad59aebd075c9685afd684cd538fa226018236.zip
FreeBSD-src-f3ad59aebd075c9685afd684cd538fa226018236.tar.gz
Fix ALIGNED_POINTER(). sizeof((u_int32_t)) is not legal C.
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/include/param.h2
1 files changed, 1 insertions, 1 deletions
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 */
OpenPOWER on IntegriCloud