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

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

Change 23305 by peter@peter_itanic2 on 2003/01/06 13:02:30

	fix warnings

Affected files ...

.. //depot/projects/ia64/usr.sbin/sysinstall/dmenu.c#2 edit

Differences ...

==== //depot/projects/ia64/usr.sbin/sysinstall/dmenu.c#2 (text+ko) ====

@@ -288,15 +288,15 @@
 	/* Pop up that dialog! */
 	if (menu->type & DMENU_NORMAL_TYPE)
 	    rval = dialog_menu((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
-			       menu_height(menu, n), -n, items, (char *)buttons, choice, scroll);
+			       menu_height(menu, n), -n, items, (char *)(uintptr_t)buttons, choice, scroll);
 
 	else if (menu->type & DMENU_RADIO_TYPE)
 	    rval = dialog_radiolist((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
-				    menu_height(menu, n), -n, items, (char *)buttons);
+				    menu_height(menu, n), -n, items, (char *)(uintptr_t)buttons);
 
 	else if (menu->type & DMENU_CHECKLIST_TYPE)
 	    rval = dialog_checklist((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
-				    menu_height(menu, n), -n, items, (char *)buttons);
+				    menu_height(menu, n), -n, items, (char *)(uintptr_t)buttons);
 	else
 	    msgFatal("Menu: `%s' is of an unknown type\n", menu->title);
 	if (exited) {

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.h06L36RD012240>