From dd921920ee739114d7e3a4dfa54b92a0bd385d04 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 3 Mar 2004 08:24:31 +0000 Subject: [PATCH] Use a long as the opaque type so that it matches the size of a pointer on both 32-bit and 64-bit platforms. --- sys/dev/drm/sis_ds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/drm/sis_ds.h b/sys/dev/drm/sis_ds.h index c57e132d46ab..d5cdbc27800a 100644 --- a/sys/dev/drm/sis_ds.h +++ b/sys/dev/drm/sis_ds.h @@ -36,7 +36,7 @@ #define SET_SIZE 5000 -typedef unsigned int ITEM_TYPE; +typedef unsigned long ITEM_TYPE; typedef struct { ITEM_TYPE val;