Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 2003 13:03:05 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 23304 for review
Message-ID:  <200301062103.h06L35V1012234@repoman.freebsd.org>

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

Change 23304 by peter@peter_itanic2 on 2003/01/06 13:02:16

	fix warnings.  Why is this being compiled on !i386 anyway??

Affected files ...

.. //depot/projects/ia64/usr.sbin/pccard/pccardd/cardd.c#6 edit

Differences ...

==== //depot/projects/ia64/usr.sbin/pccard/pccardd/cardd.c#6 (text+ko) ====

@@ -911,7 +911,7 @@
 	if (sp->flags & MEM_ASSIGNED) {
 		mem.window = 0;
 		mem.flags = sp->mem.flags;
-		mem.start = (caddr_t) sp->mem.addr;
+		mem.start = (caddr_t)(uintptr_t) sp->mem.addr;
 		mem.card = sp->mem.cardaddr;
 		mem.size = sp->mem.size;
 		if (ioctl(sp->fd, PIOCSMEM, &mem)) {

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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