diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-07 15:45:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-04-07 15:45:19 +0000 |
commit | 0c04d1ff464573bd89ea1884ad71bed30df9c9c0 (patch) | |
tree | c10b2184e017cd1cb87b7608fb3cf89e433c3151 /sys/arch/hppa | |
parent | aa1d707b3d33489f4d03816c38e6aa3451ae4fd5 (diff) |
Make sure the ALIGN() macro uses u_long on all platforms for consistency, and
update the comment block accordingly.
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index 3d0c56e357e..56a137d65e2 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.39 2010/10/26 17:24:34 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.40 2011/04/07 15:45:17 miod Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -38,7 +38,7 @@ /* * Round p (pointer or byte index) up to a correctly-aligned value for all - * data types (int, long, ...). The result is u_int and must be cast to + * data types (int, long, ...). The result is u_long and must be cast to * any desired pointer type. */ #define ALIGNBYTES 7 |