PERFORCE change 42225 for review

Juli Mallett jmallett at FreeBSD.org
Wed Nov 12 23:09:10 PST 2003


http://perforce.freebsd.org/chv.cgi?CH=42225

Change 42225 by jmallett at 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)


More information about the p4-projects mailing list