From 07181a20e3a5aeadc977a241bbb088ee969cdc43 Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Wed, 7 Oct 1998 02:21:54 +0000 Subject: sarray.h: Make boffset be an unsigned long when sparc so it works out on 64-bit systems. * objc/sarray.h: Make boffset be an unsigned long when sparc so it works out on 64-bit systems. From-SVN: r22881 --- libobjc/objc/sarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libobjc/objc') diff --git a/libobjc/objc/sarray.h b/libobjc/objc/sarray.h index 74fa386..17da272 100644 --- a/libobjc/objc/sarray.h +++ b/libobjc/objc/sarray.h @@ -92,7 +92,7 @@ struct soffset { unsigned int ioffset : SIZET_BITS/4; #else /* OBJC_SPARSE2 */ #ifdef __sparc__ - unsigned int boffset : (SIZET_BITS - 2) - BUCKET_BITS; + unsigned long boffset : (SIZET_BITS - 2) - BUCKET_BITS; unsigned int eoffset : BUCKET_BITS; unsigned int unused : 2; #else -- cgit v1.1