*** root.c.orig	Tue Dec  9 21:30:34 1997
--- root.c	Tue Dec  9 21:46:35 1997
***************
*** 65,75 ****
       Display	*dpy;
       Window	w;
  {
!   Pixmap *pm;			
    Atom	actual_type;		/* NOTUSED */
    int	format;
!   int	nitems;
!   int	bytes_after;
  
    /* intern the property name */
    Atom atom = XInternAtom(dpy, RETAIN_PROP_NAME, 0);
--- 65,75 ----
       Display	*dpy;
       Window	w;
  {
!   unsigned char *pm;
    Atom	actual_type;		/* NOTUSED */
    int	format;
!   unsigned long	nitems;
!   unsigned long bytes_after;
  
    /* intern the property name */
    Atom atom = XInternAtom(dpy, RETAIN_PROP_NAME, 0);
***************
*** 82,88 ****
      if ((actual_type == XA_PIXMAP) && (format == 32) &&
  	(nitems == 1) && (bytes_after == 0)) {
        /* blast it away */
!       XKillClient(dpy, (Pixmap *) *pm);
        XFree(pm);
      }
      else if (actual_type != None) {
--- 82,88 ----
      if ((actual_type == XA_PIXMAP) && (format == 32) &&
  	(nitems == 1) && (bytes_after == 0)) {
        /* blast it away */
!       XKillClient(dpy, (XID) *pm);
        XFree(pm);
      }
      else if (actual_type != None) {
