Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Nov 2003 23:09:07 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 42225 for review
Message-ID:  <200311130709.hAD797BA080215@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=42225

Change 42225 by jmallett@jmallett_dalek on 2003/11/12 23:08:23

	(probably) needlessly paranoid alignment changes.

Affected files ...

.. //depot/projects/mips/sys/mips/include/param.h#14 edit

Differences ...

==== //depot/projects/mips/sys/mips/include/param.h#14 (text+ko) ====

@@ -61,10 +61,10 @@
  *
  */
 #ifndef _ALIGNBYTES
-#define	_ALIGNBYTES	7
+#define	_ALIGNBYTES	15
 #endif
 #ifndef _ALIGN
-#define	_ALIGN(p)	(((u_int)(p) + _ALIGNBYTES) & ~_ALIGNBYTES)
+#define	_ALIGN(p)	(((u_long)(p) + _ALIGNBYTES) & ~_ALIGNBYTES)
 #endif
 #define ALIGNBYTES	_ALIGNBYTES
 #define ALIGN(p)	_ALIGN(p)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200311130709.hAD797BA080215>