diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-08-10 17:21:49 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-08-10 17:21:49 +0000 |
| commit | b97fc9487396ea5f41fd28ea6266057508425646 (patch) | |
| tree | 10a626ad9980389a258aa59b7d8e4ff1c9217938 /sys/dev/ic | |
| parent | 1fb5b23952fb2df3fe92127cf59f28f461aa8536 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/i82586.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/i82586.h b/sys/dev/ic/i82586.h index dd8f9cb8ba9a8..c1504fe963ada 100644 --- a/sys/dev/ic/i82586.h +++ b/sys/dev/ic/i82586.h @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: i82586.h,v 1.5 1997/02/22 09:38:02 peter Exp $ + * $Id: i82586.h,v 1.6 1998/04/15 17:45:58 bde Exp $ */ /* @@ -311,7 +311,7 @@ ie_setup_config(volatile struct ie_config_cmd *cmd, static __inline caddr_t Align(caddr_t ptr) { - unsigned long l = (unsigned long)ptr; + uintptr_t l = (uintptr_t)ptr; l = (l + 3) & ~3L; return (caddr_t)l; } |
